diff options
Diffstat (limited to 'lua/autorun/town.lua')
| -rw-r--r-- | lua/autorun/town.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lua/autorun/town.lua b/lua/autorun/town.lua index 40131df..0d36f41 100644 --- a/lua/autorun/town.lua +++ b/lua/autorun/town.lua @@ -80,6 +80,14 @@ local fakes = { GetItemByName = function(string) return {} end + }, + ["sv_huntingspawner.lua"] = { + CreateSpawnNode = function(tbl) + local pos = tbl.Position + local e = ents.Create("info_edit_huntablespawn") + e:SetPos(pos) + e:Spawn() + end } } fakes["core/npc/sv_npcsystem.lua"] = fakes["sv_npcsystem.lua"] |
