From 27b18818f85ecc447604554b1369fd112be7b3cc Mon Sep 17 00:00:00 2001
From: Marco Hladik <marco@icculus.org>
Date: Wed, 16 Jan 2019 05:18:24 +0100
Subject: [PATCH] info_notnull: Fixed spawn init, so their target and
 targetname keys are properly set

---
 Source/gs-entbase/server/stubs.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Source/gs-entbase/server/stubs.cpp b/Source/gs-entbase/server/stubs.cpp
index db64bed7..5ecfa533 100644
--- a/Source/gs-entbase/server/stubs.cpp
+++ b/Source/gs-entbase/server/stubs.cpp
@@ -16,14 +16,14 @@ void info_null :: info_null ( void )
 	remove( self );
 }
 
-class info_notnull
+class info_notnull:CBaseTrigger
 {
 	void() info_notnull;
 };
 
 void info_notnull :: info_notnull ( void )
 {
-	
+	CBaseTrigger::CBaseTrigger();
 }
 
 CLASSEXPORT( info_node, info_notnull )