diff options
| author | Alexander Pickering <Alexander.Pickering@anondomain.site90.net> | 2016-03-07 18:44:21 -0500 |
|---|---|---|
| committer | Alexander Pickering <Alexander.Pickering@anondomain.site90.net> | 2016-03-07 18:44:21 -0500 |
| commit | 4d9d034503dac45eea6da1e32da7fa8b2e97ea6a (patch) | |
| tree | f815372ab17f9aa17b60a2a597d3a43b837c0c33 /gamemode/npcsystem/npcs/antlion2.lua | |
| parent | 10ef2a646da0b67d5c1baaed9ac4b0b17a800a98 (diff) | |
| download | wintersurvival2-4d9d034503dac45eea6da1e32da7fa8b2e97ea6a.tar.gz wintersurvival2-4d9d034503dac45eea6da1e32da7fa8b2e97ea6a.tar.bz2 wintersurvival2-4d9d034503dac45eea6da1e32da7fa8b2e97ea6a.zip | |
Fixed npc's bugging out (hopefully)
Diffstat (limited to 'gamemode/npcsystem/npcs/antlion2.lua')
| -rw-r--r-- | gamemode/npcsystem/npcs/antlion2.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gamemode/npcsystem/npcs/antlion2.lua b/gamemode/npcsystem/npcs/antlion2.lua index 5d1a435..e50cce4 100644 --- a/gamemode/npcsystem/npcs/antlion2.lua +++ b/gamemode/npcsystem/npcs/antlion2.lua @@ -109,7 +109,7 @@ NPC.Attacks = { --Attack priority is a fucntion that takes a player, and returns an int describing it's prority to attack (higher = more important) NPC will always attack the player with the highest priority function NPC:AttackPriority(ply) - if not ply then return 0 end + if not ply or not ply:IsValid() then return 0 end local plypos = ply:GetPos() local mypos = self:GetPos() if not plypos then return 0 end |
