diff --git a/minetestforfun_game/mods/doors/textures/door_brown.png b/minetestforfun_game/mods/doors/textures/door_brown.png deleted file mode 100644 index 8c8e3d89..00000000 Binary files a/minetestforfun_game/mods/doors/textures/door_brown.png and /dev/null differ diff --git a/minetestforfun_game/mods/doors/textures/door_grey.png b/minetestforfun_game/mods/doors/textures/door_grey.png deleted file mode 100644 index ad110c7d..00000000 Binary files a/minetestforfun_game/mods/doors/textures/door_grey.png and /dev/null differ diff --git a/minetestforfun_game/mods/doors/textures/door_steel_b.png b/minetestforfun_game/mods/doors/textures/door_steel_b.png deleted file mode 100644 index 77ffbe3a..00000000 Binary files a/minetestforfun_game/mods/doors/textures/door_steel_b.png and /dev/null differ diff --git a/minetestforfun_game/mods/doors/textures/door_wood_b.png b/minetestforfun_game/mods/doors/textures/door_wood_b.png deleted file mode 100644 index 96650982..00000000 Binary files a/minetestforfun_game/mods/doors/textures/door_wood_b.png and /dev/null differ diff --git a/mods/mesecons/mesecons_compatibility/init.lua b/mods/mesecons/mesecons_compatibility/init.lua index 0ad04b2a..08f9ee79 100644 --- a/mods/mesecons/mesecons_compatibility/init.lua +++ b/mods/mesecons/mesecons_compatibility/init.lua @@ -175,8 +175,8 @@ doors:register_door("doors:door_wood", { description = "Wooden Door", inventory_image = "door_wood.png", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,door=1}, - tiles_bottom = {"door_wood_b.png", "door_brown.png"}, - tiles_top = {"door_wood_a.png", "door_brown.png"}, + tiles_bottom = {"doors_wood_b.png", "doors_brown.png"}, + tiles_top = {"doors_wood_a.png", "doors_brown.png"}, sounds = default.node_sound_wood_defaults(), }) @@ -184,8 +184,8 @@ doors:register_door("doors:door_steel", { description = "Steel Door", inventory_image = "door_steel.png", groups = {snappy=1,bendy=2,cracky=1,melty=2,level=2,door=1}, - tiles_bottom = {"door_steel_b.png", "door_grey.png"}, - tiles_top = {"door_steel_a.png", "door_grey.png"}, + tiles_bottom = {"doors_steel_b.png", "doors_grey.png"}, + tiles_top = {"doors_steel_a.png", "doors_grey.png"}, only_placer_can_open = true, sounds = default.node_sound_stone_defaults(), })