Allow stacks >= 1 being equippable as armor

This commit is contained in:
Wuzzy 2017-06-11 21:34:30 +02:00
parent 175890fb15
commit 95ae6c7bbb
1 changed files with 2 additions and 2 deletions

View File

@ -337,8 +337,8 @@ minetest.register_on_joinplayer(function(player)
elseif index == 5 then
g = minetest.get_item_group(iname, "armor_feet")
end
if g ~= 0 and g ~= nil then
return stack:get_count()
if g ~= 0 and g ~= nil and inv:get_stack(listname, index):is_empty() then
return 1
else
return 0
end