summaryrefslogtreecommitdiff
path: root/lib/core/monsters.lua
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2012-06-11 20:30:25 +0200
committerBardur Arantsson <bardur@scientician.net>2012-06-19 18:36:20 +0200
commitabe6d2ebc42ba47c989e8065b14ead870d118dae (patch)
treec586a89a5a28094fcd169cf5bb68d86986e739e6 /lib/core/monsters.lua
parentc6323f4a7db11a34ef0767c629364ca5474b55f1 (diff)
Lua: Remove dead 'monsters.lua'
Diffstat (limited to 'lib/core/monsters.lua')
-rw-r--r--lib/core/monsters.lua16
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/core/monsters.lua b/lib/core/monsters.lua
deleted file mode 100644
index ca2851a0..00000000
--- a/lib/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