GS-Entbase: Fix missing return on SendFlags in func_wall and func_illusionary
This commit is contained in:
parent
25f657532c
commit
929a8f8630
2 changed files with 2 additions and 2 deletions
|
@ -51,7 +51,7 @@ float
|
|||
func_illusionary::SendEntity(entity pvsent, float fl)
|
||||
{
|
||||
if (targetname)
|
||||
CBaseTrigger::SendEntity(pvsent, fl);
|
||||
return CBaseTrigger::SendEntity(pvsent, fl);
|
||||
else
|
||||
return FALSE;
|
||||
}
|
||||
|
|
|
@ -51,7 +51,7 @@ float
|
|||
func_wall::SendEntity(entity pvsent, float fl)
|
||||
{
|
||||
if (targetname)
|
||||
CBaseTrigger::SendEntity(pvsent, fl);
|
||||
return CBaseTrigger::SendEntity(pvsent, fl);
|
||||
else
|
||||
return FALSE;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue