Fixed obfuscated mappings

This commit is contained in:
Adubbz 2013-10-17 20:22:29 +11:00
parent 0edb189b6d
commit 2bbdfdf4ea
1 changed files with 4 additions and 4 deletions

View File

@ -18,7 +18,7 @@ public class BOPBiomeTransitionSmoothing implements IClassTransformer
{ {
return BlockFluid.patchColourMultiplier(newname, bytes, false); return BlockFluid.patchColourMultiplier(newname, bytes, false);
} }
if (name.equals("pc")) if (name.equals("apc"))
{ {
return BlockFluid.patchColourMultiplier(newname, bytes, true); return BlockFluid.patchColourMultiplier(newname, bytes, true);
} }
@ -27,7 +27,7 @@ public class BOPBiomeTransitionSmoothing implements IClassTransformer
{ {
return BlockGrass.patchColourMultiplier(newname, bytes, false); return BlockGrass.patchColourMultiplier(newname, bytes, false);
} }
if (name.equals("on")) if (name.equals("aon"))
{ {
return BlockGrass.patchColourMultiplier(newname, bytes, true); return BlockGrass.patchColourMultiplier(newname, bytes, true);
} }
@ -36,7 +36,7 @@ public class BOPBiomeTransitionSmoothing implements IClassTransformer
{ {
return BlockLeaves.patchColourMultiplier(newname, bytes, false); return BlockLeaves.patchColourMultiplier(newname, bytes, false);
} }
if (name.equals("oz")) if (name.equals("aoz"))
{ {
return BlockLeaves.patchColourMultiplier(newname, bytes, true); return BlockLeaves.patchColourMultiplier(newname, bytes, true);
} }
@ -45,7 +45,7 @@ public class BOPBiomeTransitionSmoothing implements IClassTransformer
{ {
return BlockTallGrass.patchColourMultiplier(newname, bytes, false); return BlockTallGrass.patchColourMultiplier(newname, bytes, false);
} }
if (name.equals("qv")) if (name.equals("aqv"))
{ {
return BlockTallGrass.patchColourMultiplier(newname, bytes, true); return BlockTallGrass.patchColourMultiplier(newname, bytes, true);
} }