diff --git a/common/biomesoplenty/asm/smoothing/BOPBiomeTransitionSmoothing.java b/common/biomesoplenty/asm/smoothing/BOPBiomeTransitionSmoothing.java index 3a4dbde7c..3966a4451 100644 --- a/common/biomesoplenty/asm/smoothing/BOPBiomeTransitionSmoothing.java +++ b/common/biomesoplenty/asm/smoothing/BOPBiomeTransitionSmoothing.java @@ -16,37 +16,45 @@ 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); } diff --git a/common/biomesoplenty/asm/smoothing/block/BlockFluid.java b/common/biomesoplenty/asm/smoothing/block/BlockFluid.java index 6b65ae1d1..5299c3719 100644 --- a/common/biomesoplenty/asm/smoothing/block/BlockFluid.java +++ b/common/biomesoplenty/asm/smoothing/block/BlockFluid.java @@ -28,7 +28,7 @@ public class BlockFluid String targetMethodName = ""; if (obfuscated) - targetMethodName ="b"; + targetMethodName ="d"; else targetMethodName ="colorMultiplier"; diff --git a/common/biomesoplenty/asm/smoothing/block/BlockGrass.java b/common/biomesoplenty/asm/smoothing/block/BlockGrass.java index 674b482a2..0fd3d1aba 100644 --- a/common/biomesoplenty/asm/smoothing/block/BlockGrass.java +++ b/common/biomesoplenty/asm/smoothing/block/BlockGrass.java @@ -26,7 +26,7 @@ public class BlockGrass String targetMethodName = ""; if (obfuscated) - targetMethodName ="b"; + targetMethodName ="c"; else targetMethodName ="colorMultiplier"; diff --git a/common/biomesoplenty/asm/smoothing/block/BlockLeaves.java b/common/biomesoplenty/asm/smoothing/block/BlockLeaves.java index e68dfabbe..7994d1655 100644 --- a/common/biomesoplenty/asm/smoothing/block/BlockLeaves.java +++ b/common/biomesoplenty/asm/smoothing/block/BlockLeaves.java @@ -29,7 +29,7 @@ public class BlockLeaves String targetMethodName = ""; if (obfuscated) - targetMethodName ="b"; + targetMethodName ="c"; else targetMethodName ="colorMultiplier"; diff --git a/common/biomesoplenty/asm/smoothing/block/BlockTallGrass.java b/common/biomesoplenty/asm/smoothing/block/BlockTallGrass.java index 8146d3676..e42bf8fe2 100644 --- a/common/biomesoplenty/asm/smoothing/block/BlockTallGrass.java +++ b/common/biomesoplenty/asm/smoothing/block/BlockTallGrass.java @@ -26,7 +26,7 @@ public class BlockTallGrass String targetMethodName = ""; if (obfuscated) - targetMethodName ="b"; + targetMethodName ="c"; else targetMethodName ="colorMultiplier";