From aafe1d018070c2ae7fd568a1d0ac49e144d090c9 Mon Sep 17 00:00:00 2001 From: Adubbz Date: Fri, 18 Oct 2013 06:23:57 +1100 Subject: [PATCH] Removed debug messages as it works properly now --- .../asm/smoothing/BOPBiomeTransitionSmoothing.java | 8 -------- 1 file changed, 8 deletions(-) diff --git a/common/biomesoplenty/asm/smoothing/BOPBiomeTransitionSmoothing.java b/common/biomesoplenty/asm/smoothing/BOPBiomeTransitionSmoothing.java index 3966a4451..3a4dbde7c 100644 --- a/common/biomesoplenty/asm/smoothing/BOPBiomeTransitionSmoothing.java +++ b/common/biomesoplenty/asm/smoothing/BOPBiomeTransitionSmoothing.java @@ -16,45 +16,37 @@ public class BOPBiomeTransitionSmoothing implements IClassTransformer { if (name.equals("net.minecraft.block.BlockFluid")) { - System.out.println("Patching BlockFluid"); return BlockFluid.patchColourMultiplier(newname, bytes, false); } if (name.equals("apc")) { - System.out.println("Patching BlockFluid apc"); return BlockFluid.patchColourMultiplier(newname, bytes, true); } if (name.equals("net.minecraft.block.BlockGrass")) { - System.out.println("Patching BlockGrass"); return BlockGrass.patchColourMultiplier(newname, bytes, false); } if (name.equals("aon")) { - System.out.println("Patching BlockGrass aon"); return BlockGrass.patchColourMultiplier(newname, bytes, true); } if (name.equals("net.minecraft.block.BlockLeaves")) { - System.out.println("Patching BlockLeaves"); return BlockLeaves.patchColourMultiplier(newname, bytes, false); } if (name.equals("aoz")) { - System.out.println("Patching BlockLeaves aoz"); return BlockLeaves.patchColourMultiplier(newname, bytes, true); } if (name.equals("net.minecraft.block.BlockTallGrass")) { - System.out.println("Patching BlockTallGrass"); return BlockTallGrass.patchColourMultiplier(newname, bytes, false); } if (name.equals("aqv")) { - System.out.println("Patching BlockTallGrass aqv"); return BlockTallGrass.patchColourMultiplier(newname, bytes, true); }