From 3a8a4635d7a5af48ab33c73e51c417e8e007c465 Mon Sep 17 00:00:00 2001 From: RealBadAngel Date: Mon, 18 Feb 2013 03:15:00 +0100 Subject: [PATCH] UI update --- unified_inventory/api.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/unified_inventory/api.lua b/unified_inventory/api.lua index e7888a0..8c210dd 100644 --- a/unified_inventory/api.lua +++ b/unified_inventory/api.lua @@ -53,7 +53,11 @@ local inv = minetest.create_detached_inventory(player:get_player_name().."craftr return 0 end, allow_take = function(inv, listname, index, stack, player) - return 0 + if minetest.setting_getbool("creative_mode") then + return stack:get_count() + else + return 0 + end end, allow_move = function(inv, from_list, from_index, to_list, to_index, count, player) return 0