From b5329e390bd32bceeaf7172409da26ca072182ff Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Tue, 7 Feb 2017 01:31:40 +0100 Subject: [PATCH] Fix purple dye issues --- mods/mcl_chests/init.lua | 4 ++-- ...png => mcl_chests_violet_shulker_box_bottom.png} | Bin ...e.png => mcl_chests_violet_shulker_box_side.png} | Bin ...op.png => mcl_chests_violet_shulker_box_top.png} | Bin mods/mcl_dye/init.lua | 2 +- 5 files changed, 3 insertions(+), 3 deletions(-) rename mods/mcl_chests/textures/{mcl_chests_purple_shulker_box_bottom.png => mcl_chests_violet_shulker_box_bottom.png} (100%) rename mods/mcl_chests/textures/{mcl_chests_purple_shulker_box_side.png => mcl_chests_violet_shulker_box_side.png} (100%) rename mods/mcl_chests/textures/{mcl_chests_purple_shulker_box_top.png => mcl_chests_violet_shulker_box_top.png} (100%) diff --git a/mods/mcl_chests/init.lua b/mods/mcl_chests/init.lua index 28dbc65d..7e8bc5f3 100644 --- a/mods/mcl_chests/init.lua +++ b/mods/mcl_chests/init.lua @@ -305,7 +305,7 @@ minetest.register_craft({ -- Shulker boxes local boxtypes = { - purple = "Purple Shulker Box", + violet = "Purple Shulker Box", } for color, desc in pairs(boxtypes) do @@ -375,7 +375,7 @@ for color, desc in pairs(boxtypes) do end minetest.register_craft({ - output = 'mcl_chests:purple_shulker_box', + output = 'mcl_chests:violet_shulker_box', recipe = { {'mcl_mobitems:shulker_shell'}, {'mcl_chests:chest'}, diff --git a/mods/mcl_chests/textures/mcl_chests_purple_shulker_box_bottom.png b/mods/mcl_chests/textures/mcl_chests_violet_shulker_box_bottom.png similarity index 100% rename from mods/mcl_chests/textures/mcl_chests_purple_shulker_box_bottom.png rename to mods/mcl_chests/textures/mcl_chests_violet_shulker_box_bottom.png diff --git a/mods/mcl_chests/textures/mcl_chests_purple_shulker_box_side.png b/mods/mcl_chests/textures/mcl_chests_violet_shulker_box_side.png similarity index 100% rename from mods/mcl_chests/textures/mcl_chests_purple_shulker_box_side.png rename to mods/mcl_chests/textures/mcl_chests_violet_shulker_box_side.png diff --git a/mods/mcl_chests/textures/mcl_chests_purple_shulker_box_top.png b/mods/mcl_chests/textures/mcl_chests_violet_shulker_box_top.png similarity index 100% rename from mods/mcl_chests/textures/mcl_chests_purple_shulker_box_top.png rename to mods/mcl_chests/textures/mcl_chests_violet_shulker_box_top.png diff --git a/mods/mcl_dye/init.lua b/mods/mcl_dye/init.lua index 9ff3c5ac..a7aeaf86 100644 --- a/mods/mcl_dye/init.lua +++ b/mods/mcl_dye/init.lua @@ -67,7 +67,7 @@ dyelocal.dyes = { {"grey", "Light Grey Dye", {dye=1, craftitem=1, basecolor_grey=1, excolor_grey=1, unicolor_grey=1}}, {"dark_grey", "Grey Dye", {dye=1, craftitem=1, basecolor_grey=1, excolor_darkgrey=1, unicolor_darkgrey=1}}, {"black", "Ink Sac", {dye=1, craftitem=1, basecolor_black=1, excolor_black=1, unicolor_black=1}}, - {"violet", "Violet Dye", {dye=1, craftitem=1, basecolor_magenta=1, excolor_violet=1, unicolor_violet=1}}, + {"violet", "Purple Dye", {dye=1, craftitem=1, basecolor_magenta=1, excolor_violet=1, unicolor_violet=1}}, {"blue", "Lapis Lazuli", {dye=1, craftitem=1, basecolor_blue=1, excolor_blue=1, unicolor_blue=1}}, {"lightblue", "Light Blue Dye", {dye=1, craftitem=1, basecolor_blue=1, excolor_blue=1, unicolor_light_blue=1}}, {"cyan", "Cyan Dye", {dye=1, craftitem=1, basecolor_cyan=1, excolor_cyan=1, unicolor_cyan=1}},