1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-12-22 17:45:28 +01:00

Removed a few .env calls and minetest typos

This commit is contained in:
LeMagnesium
2015-02-02 18:37:29 +01:00
parent 2b376da37b
commit 06d241c10a
5 changed files with 14 additions and 14 deletions

View File

@@ -41,7 +41,7 @@ local update_bobblock = function (pos, node)
elseif node.name == 'bobblocks:whitepole_off' then nodename = 'bobblocks:whitepole'
elseif node.name == 'bobblocks:whitepole' then nodename = 'bobblocks:whitepole_off'
end
minetest.env:add_node(pos, {name = nodename})
minetest.add_node(pos, {name = nodename})
minetest.sound_play("bobblocks_glassblock",
{pos = pos, gain = 1.0, max_hear_distance = 32,})
end