Fix crash
This commit is contained in:
parent
2538680eea
commit
63572c5c23
3
room.lua
3
room.lua
@ -1116,10 +1116,13 @@ function tsm_pyramids.make_traps(pos, stype, rotations, layout_room)
|
|||||||
-- The depth of air between trap stones and lava layer is <depth> - 4
|
-- The depth of air between trap stones and lava layer is <depth> - 4
|
||||||
local deep_trap = math.random(1,2) == 1
|
local deep_trap = math.random(1,2) == 1
|
||||||
local trap_node
|
local trap_node
|
||||||
|
local depth
|
||||||
if deep_trap then
|
if deep_trap then
|
||||||
trap_node = " "
|
trap_node = " "
|
||||||
|
depth = 14
|
||||||
else
|
else
|
||||||
trap_node = "~"
|
trap_node = "~"
|
||||||
|
depth = 7
|
||||||
end
|
end
|
||||||
local wmin, wmax = -1,9
|
local wmin, wmax = -1,9
|
||||||
local hole = {x=pos.x+7,y=pos.y, z=pos.z+7}
|
local hole = {x=pos.x+7,y=pos.y, z=pos.z+7}
|
||||||
|
Loading…
Reference in New Issue
Block a user