WIP: Survival inventory and mcl_chest formspec overhaul. #1

Closed
Ghost wants to merge 20 commits from formspec_list into formspec-v4
2 changed files with 8 additions and 9 deletions
Showing only changes of commit f43fa38003 - Show all commits

View File

@ -1,12 +1,13 @@
local minetest, math, table, mcl_formspec =
minetest, math, table, mcl_formspec
local minetest, math, table, mcl_armor, mcl_formspec, mcl_player =
minetest, math, table, mcl_armor, mcl_formspec, mcl_player
mcl_inventory = {}
local mcl_inventory = mcl_inventory
local S = minetest.get_translator(minetest.get_current_modname())
local F = minetest.formspec_escape
local C = minetest.colorize
mcl_inventory = {}
--local mod_player = minetest.get_modpath("mcl_player")
--local mod_craftguide = minetest.get_modpath("mcl_craftguide")

View File

@ -1,11 +1,9 @@
local minetest, math, string, table, mcl_formspec, mcl_util =
minetest, math, string, table, mcl_formspec, mcl_util
local S = minetest.get_translator(minetest.get_current_modname())
local F = minetest.formspec_escape
local C = minetest.colorize
local string = string
local table = table
local math = math
local sf = string.format
local mod_doc = minetest.get_modpath("doc")