add infotext

This commit is contained in:
Alexander Weber 2018-04-21 13:59:32 +02:00 committed by sofar
parent 7f4fd224a5
commit ea83c64fee
1 changed files with 4 additions and 0 deletions

View File

@ -22,6 +22,7 @@ local trampoline_punch = function(pos, node)
id = id + 1
if id == 7 then id = 1 end
minetest.add_node(pos, {name = string.sub(node.name, 1, #node.name - 1)..id})
minetest.get_meta(pos):set_string("infotext", "Bouncy Level: "..id)
end
for i = 1, 6 do
@ -31,6 +32,9 @@ for i = 1, 6 do
node_box = trampolinebox,
selection_box = trampolinebox,
paramtype = "light",
on_construct = function(pos)
minetest.get_meta(pos):set_string("infotext", "Bouncy Level: "..i)
end,
on_punch = trampoline_punch,
tiles = {
"jumping_trampoline_top.png",