diff options
Diffstat (limited to 'gamemode/npcsystem/aidirector.lua')
| -rw-r--r-- | gamemode/npcsystem/aidirector.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gamemode/npcsystem/aidirector.lua b/gamemode/npcsystem/aidirector.lua index d5da7db..f6cd0f9 100644 --- a/gamemode/npcsystem/aidirector.lua +++ b/gamemode/npcsystem/aidirector.lua @@ -1,7 +1,7 @@ --Lol i dunno, spawn some npc's or something
-concommand.Add("ws_spawnbird",function(ply, cmd, args)
- SpawnNpcByName("Bird",ply:GetPos())
+concommand.Add("ws_spawnzomb",function(ply, cmd, args)
+ SpawnNpcByName("Zombie",ply:GetPos())
end
)
@@ -40,7 +40,7 @@ local traceline = util.TraceLine local contents = util.PointContents
local Up = Vector(0,0,1)
---Randomly spawn npc's around?
+--Randomly spawn bird npc's around?
local Tick = CurTime()
hook.Add("Tick","SpawnAmbient",function()
if(CLIENT) then return end
@@ -71,7 +71,7 @@ hook.Add("Tick","SpawnAmbient",function() local C = contents(Pos)
if (C != CONTENTS_WATER and C != CONTENTS_WATER+CONTENTS_TRANSLUCENT) then
- print("Appropriate place found, spawning bird)")
+ --print("Appropriate place found, spawning bird)")
SpawnNpcByName("Bird",Pos)
break
end
|
