diff options
author | Technus <daniel112092@gmail.com> | 2016-10-19 23:52:37 +0200 |
---|---|---|
committer | Technus <daniel112092@gmail.com> | 2016-10-19 23:52:37 +0200 |
commit | f7a2e14e4e69e0fddbb16aed10af3f93231c0a91 (patch) | |
tree | 748ac03d808424883c3ceeb58b7f2c409398add9 /src/main/java/gregtech/loaders/oreprocessing/ProcessingPlank.java | |
parent | 0a82ecdb13cfae184916d5d8dba4ff0ea7b2a73f (diff) | |
download | GT5-Unofficial-f7a2e14e4e69e0fddbb16aed10af3f93231c0a91.tar.gz GT5-Unofficial-f7a2e14e4e69e0fddbb16aed10af3f93231c0a91.tar.bz2 GT5-Unofficial-f7a2e14e4e69e0fddbb16aed10af3f93231c0a91.zip |
Remove Character.ValueOf
Diffstat (limited to 'src/main/java/gregtech/loaders/oreprocessing/ProcessingPlank.java')
-rw-r--r-- | src/main/java/gregtech/loaders/oreprocessing/ProcessingPlank.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingPlank.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingPlank.java index c855691d49..8c435d0074 100644 --- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingPlank.java +++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingPlank.java @@ -40,7 +40,7 @@ public class ProcessingPlank implements gregtech.api.interfaces.IOreRecipeRegist if ((tOutput != null) && (tOutput.stackSize >= 3)) { GT_Values.RA.addCutterRecipe(GT_Utility.copyAmount(1L, new Object[]{tStack}), GT_Utility.copyAmount(tOutput.stackSize / 3, new Object[]{tOutput}), null, 25, 4); GT_ModHandler.removeRecipe(new ItemStack[]{tStack, tStack, tStack}); - GT_ModHandler.addCraftingRecipe(GT_Utility.copyAmount(tOutput.stackSize / 3, new Object[]{tOutput}), new Object[]{"sP", Character.valueOf('P'), tStack}); + GT_ModHandler.addCraftingRecipe(GT_Utility.copyAmount(tOutput.stackSize / 3, new Object[]{tOutput}), new Object[]{"sP", ('P'), tStack}); } if((tStack == null) && (i >= 16)){ break; @@ -51,7 +51,7 @@ public class ProcessingPlank implements gregtech.api.interfaces.IOreRecipeRegist if ((tOutput != null) && (tOutput.stackSize >= 3)) { GT_Values.RA.addCutterRecipe(GT_Utility.copyAmount(1L, new Object[]{aStack}), GT_Utility.copyAmount(tOutput.stackSize / 3, new Object[]{tOutput}), null, 25, 4); GT_ModHandler.removeRecipe(new ItemStack[]{aStack, aStack, aStack}); - GT_ModHandler.addCraftingRecipe(GT_Utility.copyAmount(tOutput.stackSize / 3, new Object[]{tOutput}), new Object[]{"sP", Character.valueOf('P'), aStack}); + GT_ModHandler.addCraftingRecipe(GT_Utility.copyAmount(tOutput.stackSize / 3, new Object[]{tOutput}), new Object[]{"sP", ('P'), aStack}); } } } |