forked from Mineclonia/Mineclonia
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.
This commit is contained in:
parent
0d61d9c495
commit
05a624bfa6
|
@ -2,7 +2,7 @@ local S = minetest.get_translator("mcl_crafting_table")
|
||||||
local formspec_escape = minetest.formspec_escape
|
local formspec_escape = minetest.formspec_escape
|
||||||
local show_formspec = minetest.show_formspec
|
local show_formspec = minetest.show_formspec
|
||||||
local C = minetest.colorize
|
local C = minetest.colorize
|
||||||
local text_color = mcl_colors.BLACK or "#313131"
|
local text_color = "#313131"
|
||||||
local itemslot_bg = mcl_formspec.get_itemslot_bg
|
local itemslot_bg = mcl_formspec.get_itemslot_bg
|
||||||
|
|
||||||
mcl_crafting_table = {
|
mcl_crafting_table = {
|
||||||
|
|
Loading…
Reference in New Issue