Removed latent System.out and reformatted to an inferior format.

This commit is contained in:
WayofTime 2015-12-22 21:05:47 -05:00
parent f1a3c5ee46
commit 4e063e24a0
2 changed files with 2 additions and 5 deletions

View file

@ -376,7 +376,6 @@ public class BloodAltar {
world.spawnParticle(EnumParticleTypes.REDSTONE, pos.getX() + Math.random() - Math.random(), pos.getY() + Math.random() - Math.random(), pos.getZ() + Math.random() - Math.random(), f1, f2, f3); world.spawnParticle(EnumParticleTypes.REDSTONE, pos.getX() + Math.random() - Math.random(), pos.getY() + Math.random() - Math.random(), pos.getZ() + Math.random() - Math.random(), f1, f2, f3);
} }
} else { } else {
System.out.println("Test2");
ItemStack returnedItem = tileAltar.getStackInSlot(0); ItemStack returnedItem = tileAltar.getStackInSlot(0);
if (!(returnedItem.getItem() instanceof IBloodOrb)) if (!(returnedItem.getItem() instanceof IBloodOrb))

View file

@ -84,10 +84,8 @@ public class AltarRecipeRegistry {
this(input, null, minTier, 0, consumeRate, drainRate); this(input, null, minTier, 0, consumeRate, drainRate);
} }
public boolean doesRequiredItemMatch(ItemStack comparedStack, EnumAltarTier tierCheck) public boolean doesRequiredItemMatch(ItemStack comparedStack, EnumAltarTier tierCheck) {
{ if (comparedStack == null || this.input == null) {
if (comparedStack == null || this.input == null)
{
return false; return false;
} }