aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/loaders/oreprocessing/ProcessingPlank.java
diff options
context:
space:
mode:
authorTechnus <daniel112092@gmail.com>2016-10-19 23:52:37 +0200
committerTechnus <daniel112092@gmail.com>2016-10-19 23:52:37 +0200
commitf7a2e14e4e69e0fddbb16aed10af3f93231c0a91 (patch)
tree748ac03d808424883c3ceeb58b7f2c409398add9 /src/main/java/gregtech/loaders/oreprocessing/ProcessingPlank.java
parent0a82ecdb13cfae184916d5d8dba4ff0ea7b2a73f (diff)
downloadGT5-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.java4
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});
}
}
}