From d6d2aebf83e5f947874cfbf9180ebcd79926c5a4 Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Wed, 7 Mar 2018 16:24:51 +0000 Subject: [PATCH] Remove default dependency --- api.lua | 12 +++++++++--- depends.txt | 1 - 2 files changed, 9 insertions(+), 4 deletions(-) delete mode 100644 depends.txt diff --git a/api.lua b/api.lua index fdb652b..c2c45a0 100644 --- a/api.lua +++ b/api.lua @@ -5,6 +5,12 @@ sfinv = { enabled = true } +if not minetest.features.formspec_prepends then + sfinv.gui_bg = "bgcolor[#080808BB;true]" + sfinv.gui_bg_img = "background[5,5;1,1;gui_formbg.png;true]" + sfinv.gui_slots = "listcolors[#00000069;#5A5A5A;#141318;#30434C;#FFF]" +end + function sfinv.register_page(name, def) assert(name, "Invalid sfinv page. Requires a name") assert(def, "Invalid sfinv page. Requires a def[inition] table") @@ -36,10 +42,10 @@ function sfinv.get_nav_fs(player, context, nav, current_idx) end end -local theme_main = "bgcolor[#080808BB;true]" .. default.gui_bg .. - default.gui_bg_img +local theme_main = "bgcolor[#080808BB;true]" .. sfinv.gui_bg .. + sfinv.gui_bg_img -local theme_inv = default.gui_slots .. [[ +local theme_inv = sfinv.gui_slots .. [[ list[current_player;main;0,4.7;8,1;] list[current_player;main;0,5.85;8,3;8] ]] diff --git a/depends.txt b/depends.txt deleted file mode 100644 index 4ad96d5..0000000 --- a/depends.txt +++ /dev/null @@ -1 +0,0 @@ -default