fix more reformatter stuff

This commit is contained in:
Raoul Van den Berge
2015-12-29 12:07:59 +01:00
parent b4c3a32806
commit 5b3c5f03f8
25 changed files with 108 additions and 54 deletions

View File

@@ -107,7 +107,8 @@ public class InventoryUtils
if (slot == null)
{
inventory.setInventorySlotContents(i, stack);
} else if (compareStackNoQuantity(slot, stack))
}
else if (compareStackNoQuantity(slot, stack))
{
slot.stackSize += stack.stackSize;
}
@@ -143,7 +144,8 @@ public class InventoryUtils
inventory.setInventorySlotContents(i, stack);
return;
} else if (compareStackNoQuantity(slot, stack))
}
else if (compareStackNoQuantity(slot, stack))
{
int toAdd = toGo;
@@ -175,7 +177,8 @@ public class InventoryUtils
if (slot == null)
{
return true;
} else if (compareStackNoQuantity(slot, stack))
}
else if (compareStackNoQuantity(slot, stack))
{
int toAdd = toGo;