From c6152371148dffb558f924045f0ebc3a8c9824b7 Mon Sep 17 00:00:00 2001 From: BuckarooBanzay Date: Tue, 11 Mar 2025 08:36:18 +0100 Subject: [PATCH] fix missing texture in plastic slope code --- models.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/models.lua b/models.lua index 253f27c..e934a4b 100644 --- a/models.lua +++ b/models.lua @@ -31,8 +31,8 @@ end -- register some blocks in stairsplus if available (part of moreblocks) scifi_nodes.register_slope("white2", "Plastic", {"scifi_nodes_white2.png",}, 0, "stone") -scifi_nodes.register_slope("super_white", "Super Plastic", {"scifi_nodes_super_white.png",}, 11, "stone") -scifi_nodes.register_slope("ultra_white", "Super Plastic", {"scifi_nodes_ultra_white.png",},minetest.LIGHT_MAX, "stone") +scifi_nodes.register_slope("super_white", "Super Plastic", {"scifi_nodes_white2.png",}, 11, "stone") +scifi_nodes.register_slope("ultra_white", "Super Plastic", {"scifi_nodes_white2.png",},minetest.LIGHT_MAX, "stone") scifi_nodes.register_slope("black", "Black", {"scifi_nodes_black.png",}, 0) scifi_nodes.register_slope("white", "White", {"scifi_nodes_white.png",}, 0) scifi_nodes.register_slope("grey", "Grey", {"scifi_nodes_grey.png",}, 0)