summaryrefslogtreecommitdiff
path: root/unifieddyes
diff options
context:
space:
mode:
authorVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2018-08-24 11:16:50 -0400
committerVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2018-08-24 11:16:50 -0400
commit7e87761776e412f6b1867ab3ad9584fa79745fd2 (patch)
treec7b98451224c676013a47e09e044a4ce06427f22 /unifieddyes
parent32e19e86acd4feb875112824991bfa8d948fd3a6 (diff)
downloaddreambuilder_modpack-7e87761776e412f6b1867ab3ad9584fa79745fd2.tar
dreambuilder_modpack-7e87761776e412f6b1867ab3ad9584fa79745fd2.tar.gz
dreambuilder_modpack-7e87761776e412f6b1867ab3ad9584fa79745fd2.tar.bz2
dreambuilder_modpack-7e87761776e412f6b1867ab3ad9584fa79745fd2.tar.xz
dreambuilder_modpack-7e87761776e412f6b1867ab3ad9584fa79745fd2.zip
update unified dyes
Diffstat (limited to 'unifieddyes')
-rw-r--r--unifieddyes/init.lua30
1 files changed, 30 insertions, 0 deletions
diff --git a/unifieddyes/init.lua b/unifieddyes/init.lua
index 5619199..37d3572 100644
--- a/unifieddyes/init.lua
+++ b/unifieddyes/init.lua
@@ -153,6 +153,36 @@ local default_dyes = {
"yellow"
}
+-- if a node with a palette is placed in the world,
+-- but the itemstack used to place it has no palette_index (color byte),
+-- create something appropriate to make it officially white.
+
+minetest.register_on_placenode(
+ function(pos, newnode, placer, oldnode, itemstack, pointed_thing)
+ local def = minetest.registered_items[newnode.name]
+ if not def or not def.palette then return false end
+ if string.find(itemstack:to_string(), "palette_index") then
+ minetest.swap_node(pos, {name = newnode.name, param2 = newnode.param2})
+ return
+ end
+
+ local param2 = 0
+ local color = 0
+
+ if def.palette == "unifieddyes_palette_extended.png" then
+ param2 = 240
+ color = 240
+ elseif def.palette == "unifieddyes_palette_colorwallmounted.png" then
+ param2 = newnode.param2 % 8
+ elseif def.palette ~= "unifieddyes_palette.png" then -- it's a split palette
+ param2 = newnode.param2 % 32
+ end
+
+ minetest.swap_node(pos, {name = newnode.name, param2 = param2})
+ minetest.get_meta(pos):set_int("palette_index", color)
+ end
+)
+
-- just stubs to keep old mods from crashing when expecting auto-coloring
-- or getting back the dye on dig.