ShadowNinja
2013-12-18 0d32e05b52fcbafa60f3c939a327ba4019d022ce
Fix stack count fetching
1 files modified
4 ■■■■ changed files
technic_chests/common.lua 4 ●●●● patch | view | raw | blame | history
technic_chests/common.lua
@@ -41,10 +41,10 @@
    return inv_change(pos, count, player)
end
function technic.chests.inv_put(pos, listname, index, stack, player)
    return inv_change(pos, count, player)
    return inv_change(pos, stack:get_count(), player)
end
function technic.chests.inv_take(pos, listname, index, stack, player)
    return inv_change(pos, count, player)
    return inv_change(pos, stack:get_count(), player)
end
function technic.chests.on_inv_move(pos, from_list, from_index, to_list, to_index, count, player)