diff options
| author | Alexander Pickering <Alexander.Pickering@anondomain.site90.net> | 2016-03-13 18:17:27 -0400 |
|---|---|---|
| committer | Alexander Pickering <Alexander.Pickering@anondomain.site90.net> | 2016-03-13 18:17:27 -0400 |
| commit | 65016498e2ca0e87ad0617ecdfa0a2dce2cd1404 (patch) | |
| tree | 1f816d39717b6162826025acbe52ece8d8148882 /gamemode/npcsystem | |
| parent | 9d4ff294129545d7266f03cd51135d43e1c47967 (diff) | |
| download | wintersurvival2-65016498e2ca0e87ad0617ecdfa0a2dce2cd1404.tar.gz wintersurvival2-65016498e2ca0e87ad0617ecdfa0a2dce2cd1404.tar.bz2 wintersurvival2-65016498e2ca0e87ad0617ecdfa0a2dce2cd1404.zip | |
Removed most of the print messages spamming console
Diffstat (limited to 'gamemode/npcsystem')
| -rw-r--r-- | gamemode/npcsystem/npcs/antlion1.lua | 2 | ||||
| -rw-r--r-- | gamemode/npcsystem/npcs/antlion2.lua | 2 | ||||
| -rw-r--r-- | gamemode/npcsystem/npcs/antlion3.lua | 4 | ||||
| -rw-r--r-- | gamemode/npcsystem/npcs/antlion4.lua | 2 | ||||
| -rw-r--r-- | gamemode/npcsystem/npcs/bird.lua | 2 | ||||
| -rw-r--r-- | gamemode/npcsystem/npcs/zombie.lua | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/gamemode/npcsystem/npcs/antlion1.lua b/gamemode/npcsystem/npcs/antlion1.lua index c9ae1b6..2c3d908 100644 --- a/gamemode/npcsystem/npcs/antlion1.lua +++ b/gamemode/npcsystem/npcs/antlion1.lua @@ -67,7 +67,7 @@ local dorun = function(self, ply) self:StartActivity(ACT_WALK) self:MoveToPos(ply:GetPos(),moveop) else - print("Could not find valid navmesh, suicideing to prevent server crash!") + --print("Could not find valid navmesh, suicideing to prevent server crash!") self:BecomeRagdoll(DamageInfo()) end end diff --git a/gamemode/npcsystem/npcs/antlion2.lua b/gamemode/npcsystem/npcs/antlion2.lua index e50cce4..5b53b8e 100644 --- a/gamemode/npcsystem/npcs/antlion2.lua +++ b/gamemode/npcsystem/npcs/antlion2.lua @@ -86,7 +86,7 @@ local dorun = function(self, ply) self:StartActivity(ACT_WALK) self:MoveToPos(ply:GetPos(),moveop) else - print("Could not find valid navmesh, suicideing to prevent server crash!") + --print("Could not find valid navmesh, suicideing to prevent server crash!") self:BecomeRagdoll(DamageInfo()) end end diff --git a/gamemode/npcsystem/npcs/antlion3.lua b/gamemode/npcsystem/npcs/antlion3.lua index f5f5486..984b779 100644 --- a/gamemode/npcsystem/npcs/antlion3.lua +++ b/gamemode/npcsystem/npcs/antlion3.lua @@ -73,7 +73,7 @@ local docharge = function(self,ply) moveop.draw = true self:MoveToPos(ply:GetPos(),moveop) else - print("Could not find valid navmesh, suicideing to prevent server crash!") + --print("Could not find valid navmesh, suicideing to prevent server crash!") self:BecomeRagdoll(DamageInfo()) end timer.Remove("Runcycle") @@ -97,7 +97,7 @@ local dorun = function(self, ply) self:StartActivity(ACT_WALK) self:MoveToPos(ply:GetPos(),moveop) else - print("Could not find valid navmesh, suicideing to prevent server crash!") + --print("Could not find valid navmesh, suicideing to prevent server crash!") self:BecomeRagdoll(DamageInfo()) end end diff --git a/gamemode/npcsystem/npcs/antlion4.lua b/gamemode/npcsystem/npcs/antlion4.lua index cb39049..0b5825c 100644 --- a/gamemode/npcsystem/npcs/antlion4.lua +++ b/gamemode/npcsystem/npcs/antlion4.lua @@ -68,7 +68,7 @@ local dorun = function(self, ply) self:StartActivity(ACT_WALK) self:MoveToPos(ply:GetPos(),moveop) else - print("Could not find valid navmesh, suicideing to prevent server crash!") + --print("Could not find valid navmesh, suicideing to prevent server crash!") self:BecomeRagdoll(DamageInfo()) end end diff --git a/gamemode/npcsystem/npcs/bird.lua b/gamemode/npcsystem/npcs/bird.lua index 55a5c3d..0efa7b0 100644 --- a/gamemode/npcsystem/npcs/bird.lua +++ b/gamemode/npcsystem/npcs/bird.lua @@ -50,7 +50,7 @@ local dorun = function(self,ply) if navarea:IsValid() then
self:MoveToPos(topos)
else
- print("Suicideing a bird to prevent server crash!")
+ --print("Suicideing a bird to prevent server crash!")
self:BecomeRagdoll(DamageInfo())
end
end
diff --git a/gamemode/npcsystem/npcs/zombie.lua b/gamemode/npcsystem/npcs/zombie.lua index de4a389..41dad0f 100644 --- a/gamemode/npcsystem/npcs/zombie.lua +++ b/gamemode/npcsystem/npcs/zombie.lua @@ -68,7 +68,7 @@ local dorun = function(self, ply) self:StartActivity(ACT_WALK)
self:MoveToPos(ply:GetPos(),moveop)
else
- print("Could not find valid navmesh, suicideing to prevent server crash!")
+ --print("Could not find valid navmesh, suicideing to prevent server crash!")
self:BecomeRagdoll(DamageInfo())
end
end
|
