From ccc1ce566f5ae8ae96af8a92fbdc0096ab299b0d Mon Sep 17 00:00:00 2001 From: E Date: Wed, 21 Apr 2021 23:08:02 -0400 Subject: [PATCH] items/mcl_crafting_table: remove reference to "mcl_colors" mod This patch was technically backported from a later version of MineClone2. Between the point where Mineclonia forked, and the point where this patch was developed, MineClone2 introduced a "mcl_colors" mod which, presumably just lists some colors. This commit removes references to that mod, as it doesn't exist in our history. --- mods/ITEMS/mcl_crafting_table/init.lua | 2 +- mods/ITEMS/mcl_crafting_table/mod.conf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/ITEMS/mcl_crafting_table/init.lua b/mods/ITEMS/mcl_crafting_table/init.lua index 0ed51f90..3ba8d24b 100644 --- a/mods/ITEMS/mcl_crafting_table/init.lua +++ b/mods/ITEMS/mcl_crafting_table/init.lua @@ -2,7 +2,7 @@ local S = minetest.get_translator("mcl_crafting_table") local formspec_escape = minetest.formspec_escape local show_formspec = minetest.show_formspec local C = minetest.colorize -local text_color = mcl_colors.BLACK or "#313131" +local text_color = "#313131" local itemslot_bg = mcl_formspec.get_itemslot_bg mcl_crafting_table = { diff --git a/mods/ITEMS/mcl_crafting_table/mod.conf b/mods/ITEMS/mcl_crafting_table/mod.conf index 0f774815..da51f93c 100644 --- a/mods/ITEMS/mcl_crafting_table/mod.conf +++ b/mods/ITEMS/mcl_crafting_table/mod.conf @@ -1,4 +1,4 @@ name = mcl_crafting_table description = Adds a crafting table. depends = mcl_init, mcl_formspec, mcl_sounds -optional_depends = mcl_colors, mcl_banners +optional_depends = mcl_banners