diff options
Diffstat (limited to 'lib/mods/theme/core')
-rw-r--r-- | lib/mods/theme/core/dungeon.lua | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/lib/mods/theme/core/dungeon.lua b/lib/mods/theme/core/dungeon.lua index ba4fd38a..13030eac 100644 --- a/lib/mods/theme/core/dungeon.lua +++ b/lib/mods/theme/core/dungeon.lua @@ -1,29 +1,9 @@ -- Internal lua file in charge of dungeon stuff -function place_dungeon(y, x, d_idx) - if d_idx then - wild_map(y, x).entrance = 1000 + d_idx - else - wild_map(y, x).entrance = 0 - end -end - function dungeon(d_idx) return d_info[1 + d_idx] end -function wild_feat(wild) - return wf_info[1 + wild.feat] -end - function explode_dir(dir) return ddy[dir + 1], ddx[dir + 1] end - --- Place a trap for a specific level -function place_trap(y, x, level) - local old_dun = dun_level - dun_level = level - %place_trap(y, x) - dun_level = old_dun -end |