summaryrefslogtreecommitdiff
path: root/lua/autorun/town.lua
diff options
context:
space:
mode:
authorAlexander Pickering <alexandermpickering@gmail.com>2017-08-24 18:08:43 -0400
committerAlexander Pickering <alexandermpickering@gmail.com>2017-08-24 18:08:43 -0400
commitcda70b47f13623d086188f686c005a017ccc5b25 (patch)
treeb3ecc32afbc1f96097ffac57279569b3cc31d7dd /lua/autorun/town.lua
parentd370c6c0f7d9249065bcdb9b2c7b80c3fe6470a6 (diff)
downloadartery_editor-cda70b47f13623d086188f686c005a017ccc5b25.tar.gz
artery_editor-cda70b47f13623d086188f686c005a017ccc5b25.tar.bz2
artery_editor-cda70b47f13623d086188f686c005a017ccc5b25.zip
Vairious updates
Diffstat (limited to 'lua/autorun/town.lua')
-rw-r--r--lua/autorun/town.lua8
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"]