mirror of
https://github.com/mt-mods/unifieddyes.git
synced 2024-11-22 15:33:52 +01:00
fix wrong param2 setting
This commit is contained in:
parent
3e93c10cfd
commit
4622d25e76
2
init.lua
2
init.lua
@ -280,9 +280,9 @@ function unifieddyes.on_rightclick(pos, node, player, stack, pointed_thing, newn
|
||||
newnode = string.gsub(newnode, "_grey", "_"..HUES[hue])
|
||||
end
|
||||
end
|
||||
node.param2 = paletteidx + (minetest.get_node(pos).param2 % 32)
|
||||
end
|
||||
node.name = newnode
|
||||
node.param2 = paletteidx + (minetest.get_node(pos).param2 % 32)
|
||||
minetest.swap_node(pos, node)
|
||||
else -- this path is used when you're just painting an existing node, rather than replacing one.
|
||||
newnode = oldnode -- note that here, newnode/oldnode are a full node, not just the name.
|
||||
|
Loading…
Reference in New Issue
Block a user