summaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
authorShadowNinja <shadowninja@minetest.net>2014-05-11 22:00:32 -0400
committerShadowNinja <shadowninja@minetest.net>2014-05-11 22:00:32 -0400
commit043f6081452365daaa033c58e0738527ccb64c3d (patch)
treec7b586f1b42be2973425bf0d6911a072f2beb478 /init.lua
parentba956d683856f457edddaa9b9ad0c4b282bdefea (diff)
Move around some group code and make the craftguide render well without a recipe
This also keeps recipes aligned to the right, close to the arrow. It also calculates the craft's height.
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/init.lua b/init.lua
index fb8636b..1800ba9 100644
--- a/init.lua
+++ b/init.lua
@@ -12,7 +12,6 @@ unified_inventory.current_searchbox = {}
unified_inventory.current_index = {}
unified_inventory.current_item = {}
unified_inventory.registered_craft_types = {}
-unified_inventory.registered_group_representative_items = {}
unified_inventory.crafts_table = {}
unified_inventory.crafts_table_count = 0
unified_inventory.players = {}
@@ -39,6 +38,7 @@ if creative_inventory then
end
dofile(modpath.."/datastorage.lua")
+dofile(modpath.."/group.lua")
dofile(modpath.."/api.lua")
dofile(modpath.."/internal.lua")
dofile(modpath.."/callbacks.lua")