diff options
author | ShadowNinja <shadowninja@minetest.net> | 2014-05-11 22:00:32 -0400 |
---|---|---|
committer | ShadowNinja <shadowninja@minetest.net> | 2014-05-11 22:00:32 -0400 |
commit | 043f6081452365daaa033c58e0738527ccb64c3d (patch) | |
tree | c7b586f1b42be2973425bf0d6911a072f2beb478 /init.lua | |
parent | ba956d683856f457edddaa9b9ad0c4b282bdefea (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.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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") |