Update inventory.dm

This commit is contained in:
silicons
2022-05-15 13:52:33 -07:00
committed by GitHub
parent 834a316bd4
commit 26f6e92e70
+1 -1
View File
@@ -461,7 +461,7 @@
//any cost it has isn't a worry
/mob/proc/change_number_of_hands(amt)
if(amt < held_items.len)
for(var/i in held_items.len to amt step -1)
for(var/i in held_items.len to (amt + 1) step -1)
dropItemToGround(held_items[i])
held_items.len = amt