diff --git a/mods/doors/init.lua b/mods/doors/init.lua index ba8e5b19..0b187af2 100644 --- a/mods/doors/init.lua +++ b/mods/doors/init.lua @@ -515,9 +515,9 @@ doors.register("door_bar", { sound_open = "doors_steel_door_open", sound_close = "doors_steel_door_close", recipe = { - {"default:steel_ingot", "", "default:steel_ingot"}, - {"default:steel_ingot", "", "default:steel_ingot"}, - {"default:steel_ingot", "", "default:steel_ingot"}, + {"xpanes:bar_flat", "xpanes:bar_flat"}, + {"xpanes:bar_flat", "default:steel_ingot"}, + {"xpanes:bar_flat", "xpanes:bar_flat"}, }, }) @@ -748,9 +748,8 @@ minetest.register_craft({ minetest.register_craft({ output = 'doors:trapdoor_bar', recipe = { - {"", "", ""}, - {"default:steel_ingot", "", "default:steel_ingot"}, - {"default:steel_ingot", "", "default:steel_ingot"}, + {"xpanes:bar_flat", "default:steel_ingot"}, + {"xpanes:bar_flat", "xpanes:bar_flat"}, } }) diff --git a/mods/doors/mod.conf b/mods/doors/mod.conf index de053c27..70a04506 100644 --- a/mods/doors/mod.conf +++ b/mods/doors/mod.conf @@ -1,4 +1,4 @@ name = doors description = Minetest Game mod: doors depends = default -optional_depends = screwdriver +optional_depends = screwdriver, xpanes diff --git a/mods/doors/textures/doors_door_bar.png b/mods/doors/textures/doors_door_bar.png index 81965ca1..435af148 100644 Binary files a/mods/doors/textures/doors_door_bar.png and b/mods/doors/textures/doors_door_bar.png differ diff --git a/mods/doors/textures/doors_item_bar.png b/mods/doors/textures/doors_item_bar.png index 005f6665..d1ddaddd 100644 Binary files a/mods/doors/textures/doors_item_bar.png and b/mods/doors/textures/doors_item_bar.png differ diff --git a/mods/doors/textures/doors_trapdoor_bar.png b/mods/doors/textures/doors_trapdoor_bar.png index 5137283c..de4b4946 100644 Binary files a/mods/doors/textures/doors_trapdoor_bar.png and b/mods/doors/textures/doors_trapdoor_bar.png differ