Merge pull request from AartBluestoke/patch-10

StackUtil.itemsAdded should be >0 when doAdd is false. Closes 
This commit is contained in:
SirSengir 2012-09-03 05:36:06 -07:00
commit 65ac840b0b

View file

@ -235,8 +235,9 @@ public class StackUtil {
if (doAdd) {
stack.stackSize++;
itemsAdded++;
}
itemsAdded++;
return true;
}