change comment to NULL (NIL is ok, NULL is bad)

This commit is contained in:
tad2020 2007-08-01 16:20:17 +00:00
parent 3c84aa9528
commit 0eae540e51

View File

@ -109,8 +109,8 @@ local function GetNetworkTable( ent, name )
end
local function SendNetworkUpdate( VarType, Index, Key, Value, Player )
if(Player and not (Player:IsValid() and Player:IsPlayer())) then return end // Be sure, Player is not a NULL-Entity, or the server will crash!
if(Player and not (Player:IsValid() and Player:IsPlayer())) then return end; // Be sure, Player is not a NIL-Entity, or the server will crash!
umsg.Start( "RcvEntityVarBeam_"..VarType, Player )
umsg.Short( Index )
umsg.String( Key )