summaryrefslogtreecommitdiff
path: root/lib/mods/theme/core/monsters.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mods/theme/core/monsters.lua')
-rw-r--r--lib/mods/theme/core/monsters.lua16
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/mods/theme/core/monsters.lua b/lib/mods/theme/core/monsters.lua
deleted file mode 100644
index ca2851a0..00000000
--- a/lib/mods/theme/core/monsters.lua
+++ /dev/null
@@ -1,16 +0,0 @@
--- SYSTEM FILE
---
--- Monster stuff, do not touch
---
-
-function summon_monster(y, x, lev, friend, typ)
- if type(typ) == "number" then
- if friend == TRUE then
- return summon_specific_friendly(y, x, lev, typ, FALSE)
- else
- return summon_specific(y, x, lev, typ)
- end
- else
- return summon_monster_aux(y, x, lev, friend, typ)
- end
-end