Skip to content

Commit

Permalink
Remove useless logging (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
bruberu authored Apr 22, 2023
1 parent 8236515 commit 9c06699
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/main/java/supersymmetry/common/EventHandlers.java
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ public static void onPlayerLeftClick(PlayerInteractEvent.RightClickBlock event)
BlockCauldron cauldron = (BlockCauldron) blockState.getBlock();
ItemCeramicBucket bucket = (ItemCeramicBucket) itemStack.getItem();
FluidStack fluid = bucket.getFluid(itemStack);
SusyLog.logger.info("a");
int level = blockState.getValue(BlockCauldron.LEVEL);
if (fluid == null && level >= 3) {
if (!event.getEntityPlayer().capabilities.isCreativeMode) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ public BlockAlternatorCoil(){
setResistance(10.0f);
setSoundType(SoundType.METAL);
setHarvestLevel("wrench", 2);
SusyLog.logger.info(this.FACING);
setDefaultState(getState(AlternatorCoilType.COPPER).withProperty(FACING, EnumFacing.NORTH));
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ public BlockTurbineRotor(){
setResistance(10.0f);
setSoundType(SoundType.METAL);
setHarvestLevel("wrench", 2);
SusyLog.logger.info(this.FACING);
setDefaultState(getState(BlockTurbineRotorType.STEEL).withProperty(FACING, EnumFacing.NORTH));
}

Expand Down

0 comments on commit 9c06699

Please sign in to comment.