From 178d60b6894efc74f052d73bc1dad89bad41c5c2 Mon Sep 17 00:00:00 2001 From: Nathaniel Freeman Date: Sat, 16 Oct 2021 13:45:08 +0200 Subject: [PATCH] shop WIP --- init.lua | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/init.lua b/init.lua index eaa5661..d99662e 100644 --- a/init.lua +++ b/init.lua @@ -24,14 +24,6 @@ local modpath = core.get_modpath(core.get_current_modname()) emeraldbank = {} - -emeraldbank.player_inv = "list[current_player;main;0,4.5;9,3;9]".. - mcl_formspec.get_itemslot_bg(0,4.5,9,3).. - "list[current_player;main;0,7.74;9,1;]".. - mcl_formspec.get_itemslot_bg(0,7.74,9,1).. - "listring[current_player;main]" - - local income_enabled = core.settings:get_bool("emeraldbank.income_enabled", true) if income_enabled then @@ -39,5 +31,5 @@ if income_enabled then end dofile(modpath .. "/bank.lua") -dofile(modpath .. "/shop.lua") +-- dofile(modpath .. "/shop.lua") dofile(modpath .. "/commands.lua")