diff --git a/mods/ITEMS/mcl_copper/functions.lua b/mods/ITEMS/mcl_copper/functions.lua index 30d913aec..e1c4baf1e 100644 --- a/mods/ITEMS/mcl_copper/functions.lua +++ b/mods/ITEMS/mcl_copper/functions.lua @@ -18,6 +18,9 @@ function mcl_copper.register_oxidation_and_scraping(mod_name, subname, decay_cha minetest.override_item(item.."_top", {_mcl_oxidized_variant = oxidized_item.."_top"}) minetest.override_item(oxidized_item.."_double", {_mcl_stripped_variant = item.."_double"}) minetest.override_item(oxidized_item.."_top", {_mcl_stripped_variant = item.."_top"}) + elseif subname:find("trapdoor") then + minetest.override_item(item.."_open", {_mcl_oxidized_variant = oxidized_item.."_open"}) + minetest.override_item(oxidized_item.."_open", {_mcl_stripped_variant = item.."_open"}) end end end @@ -42,6 +45,9 @@ function mcl_copper.register_waxing_and_scraping(mod_name, subname, decay_chain) minetest.override_item(waxed_item.."_top", {_mcl_stripped_variant = unwaxed_item.."_top"}) minetest.override_item(unwaxed_item.."_double", {_mcl_waxed_variant = waxed_item.."_double"}) minetest.override_item(unwaxed_item.."_top", {_mcl_waxed_variant = waxed_item.."_top"}) + elseif subname:find("trapdoor") then + minetest.override_item(waxed_item.."_open", {_mcl_stripped_variant = unwaxed_item.."_open"}) + minetest.override_item(unwaxed_item.."_open", {_mcl_waxed_variant = waxed_item.."_open"}) end end end diff --git a/textures/mcl_copper_item_door.png b/textures/mcl_copper_item_door.png index 36de011f3..a7cf37433 100644 Binary files a/textures/mcl_copper_item_door.png and b/textures/mcl_copper_item_door.png differ diff --git a/textures/mcl_copper_item_door_exposed.png b/textures/mcl_copper_item_door_exposed.png index d679835f6..28c3143c2 100644 Binary files a/textures/mcl_copper_item_door_exposed.png and b/textures/mcl_copper_item_door_exposed.png differ diff --git a/textures/mcl_copper_item_door_oxidized.png b/textures/mcl_copper_item_door_oxidized.png index 3e13feaf5..e2d15393a 100644 Binary files a/textures/mcl_copper_item_door_oxidized.png and b/textures/mcl_copper_item_door_oxidized.png differ diff --git a/textures/mcl_copper_item_door_weathered.png b/textures/mcl_copper_item_door_weathered.png index 5873c94a6..64da4ec0f 100644 Binary files a/textures/mcl_copper_item_door_weathered.png and b/textures/mcl_copper_item_door_weathered.png differ