diff options
author | ghostflyby <ghostflyby@outlook.com> | 2023-11-08 22:17:00 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-08 22:17:00 +0800 |
commit | 3444f528c31ed2dd0f6b18a529ad4a2c14897188 (patch) | |
tree | aec387815aa3d7a54c1860eb287229a4926c1865 /src/main/java/gregtech/loaders/postload/GT_CraftingRecipeLoader.java | |
parent | 86c14f89da55b39ef7a9c850e9a1f303c5274cf4 (diff) | |
download | GT5-Unofficial-3444f528c31ed2dd0f6b18a529ad4a2c14897188.tar.gz GT5-Unofficial-3444f528c31ed2dd0f6b18a529ad4a2c14897188.tar.bz2 GT5-Unofficial-3444f528c31ed2dd0f6b18a529ad4a2c14897188.zip |
Migrate to non-Object version Utility methods (#2359)
A few calls restricted by other methods and interfaces are left untouched.
Diffstat (limited to 'src/main/java/gregtech/loaders/postload/GT_CraftingRecipeLoader.java')
-rw-r--r-- | src/main/java/gregtech/loaders/postload/GT_CraftingRecipeLoader.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/loaders/postload/GT_CraftingRecipeLoader.java b/src/main/java/gregtech/loaders/postload/GT_CraftingRecipeLoader.java index a2af20670c..2aa5aed5b2 100644 --- a/src/main/java/gregtech/loaders/postload/GT_CraftingRecipeLoader.java +++ b/src/main/java/gregtech/loaders/postload/GT_CraftingRecipeLoader.java @@ -160,7 +160,7 @@ public class GT_CraftingRecipeLoader implements Runnable { if (tStack != null) { GT_ModHandler.addCraftingRecipe( GT_Utility.copyAmount( - GT_Mod.gregtechproxy.mNerfedWoodPlank ? tStack.stackSize : tStack.stackSize * 5L / 4, + GT_Mod.gregtechproxy.mNerfedWoodPlank ? tStack.stackSize : tStack.stackSize * 5 / 4, tStack), bits_no_remove_buffered, new Object[] { "s", "P", "P", 'P', OrePrefixes.plank.get(Materials.Wood) }); |