Fix 'automatic tool repair' bug, Don't add stack_max=1 items

This commit is contained in:
LNJ 2017-03-26 22:22:32 +02:00
parent e784ad6a17
commit 1b280c5442
No known key found for this signature in database
GPG Key ID: 69268DBD835B6B0B

@ -165,13 +165,19 @@ core.register_entity("drawers:visual", {
if add_name ~= name then return end
else -- is empty
name = add_name
meta:set_string("name", name)
count = 0
-- get new stack max
base_stack_max = ItemStack(name):get_stack_max()
meta:set_int("base_stack_max", base_stack_max)
max_count = base_stack_max * stack_max_factor
-- Don't add items stackable only to 1
if base_stack_max == 1 then
return
end
meta:set_string("name", name)
meta:set_int("base_stack_max", base_stack_max)
meta:set_int("max_count", max_count)
end