1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-30 08:20:32 +02:00

fixed local var

This commit is contained in:
crabman77 2015-06-20 22:59:21 +02:00
parent c14b7b2c62
commit 4176fdaf89

View File

@ -95,7 +95,7 @@ function pyramids.make_room(pos)
if ix < 3 then p2 = 1 else p2 = 3 end if ix < 3 then p2 = 1 else p2 = 3 end
pyramids.fill_chest({x=loch.x+ix,y=loch.y-iy,z=loch.z+iz}) pyramids.fill_chest({x=loch.x+ix,y=loch.y-iy,z=loch.z+iz})
end end
node_name = replace(n_str,iy) local node_name = replace(n_str,iy)
minetest.set_node({x=loch.x+ix,y=loch.y-iy,z=loch.z+iz}, {name=node_name, param2=p2}) minetest.set_node({x=loch.x+ix,y=loch.y-iy,z=loch.z+iz}, {name=node_name, param2=p2})
if node_name == "maptools:chest" then if node_name == "maptools:chest" then
table.insert(pyramids.saved_chests,1,{x=loch.x+ix,y=loch.y-iy,z=loch.z+iz}) table.insert(pyramids.saved_chests,1,{x=loch.x+ix,y=loch.y-iy,z=loch.z+iz})