summaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2017-01-26 11:23:18 -0500
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2017-01-26 11:23:34 -0500
commitb1ad76ab7266558205e41777e5a11c6b1d1b5777 (patch)
tree5d0b1c1fbc8f6c68b5273f8068fb3bdc83321cd4 /init.lua
parent3f7fb1af74ffc9908a8ac8607de1f3323d8494df (diff)
downloadunifieddyes-b1ad76ab7266558205e41777e5a11c6b1d1b5777.tar
unifieddyes-b1ad76ab7266558205e41777e5a11c6b1d1b5777.tar.gz
unifieddyes-b1ad76ab7266558205e41777e5a11c6b1d1b5777.tar.bz2
unifieddyes-b1ad76ab7266558205e41777e5a11c6b1d1b5777.tar.xz
unifieddyes-b1ad76ab7266558205e41777e5a11c6b1d1b5777.zip
handle a few more color-to-grey and grey-to-color cases
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua14
1 files changed, 10 insertions, 4 deletions
diff --git a/init.lua b/init.lua
index 9b14739..c6a03ae 100644
--- a/init.lua
+++ b/init.lua
@@ -230,7 +230,7 @@ function unifieddyes.on_rightclick(pos, node, player, stack, pointed_thing, newn
end
end
- if newnode then
+ if newnode then -- this path is used when the calling mod want to supply a replacement node
if colorfdir then -- we probably need to change the hue of the node too
if oldhue ~=0 then -- it's colored, not grey
if oldhue ~= nil then -- it's been painted before
@@ -252,20 +252,26 @@ function unifieddyes.on_rightclick(pos, node, player, stack, pointed_thing, newn
end
node.name = newnode
minetest.swap_node(pos, node)
- else
+ 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.
if colorfdir then
print("prevdye = "..dump(prevdye))
print("hue = "..dump(hue).." "..dump(HUES[hue]))
print("newnode.name = "..newnode.name)
if oldhue then
- newnode.name = string.gsub(newnode.name, "_"..oldhue, "_"..HUES[hue])
+ if hue ~= 0 then
+ newnode.name = string.gsub(newnode.name, "_"..oldhue, "_"..HUES[hue])
+ else
+ newnode.name = string.gsub(newnode.name, "_"..oldhue, "_grey")
+ end
+ elseif string.find(minetest.get_node(pos).name, "_grey") and hue ~= 0 then
+ newnode.name = string.gsub(newnode.name, "_grey", "_"..HUES[hue])
end
end
newnode.param2 = paletteidx + (minetest.get_node(pos).param2 % 32)
minetest.set_node(pos, newnode)
end
- else
+ else -- here is where a node is just being placed, not something being colored
if unifieddyes.is_buildable_to(player:get_player_name(), pos2) and
minetest.registered_nodes[name] then
local placeable_node = minetest.registered_nodes[stack:get_name()]