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/oreprocessing/ProcessingWax.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/oreprocessing/ProcessingWax.java')
-rw-r--r-- | src/main/java/gregtech/loaders/oreprocessing/ProcessingWax.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingWax.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingWax.java index 9874739eb0..127f7465b9 100644 --- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingWax.java +++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingWax.java @@ -22,7 +22,7 @@ public class ProcessingWax implements gregtech.api.interfaces.IOreRecipeRegistra ItemStack aStack) { if (aOreDictName.equals("waxMagical")) { GT_Values.RA.stdBuilder() - .itemInputs(GT_Utility.copyAmount(1L, aStack)) + .itemInputs(GT_Utility.copyAmount(1, aStack)) .metadata(FUEL_VALUE, 6) .metadata(FUEL_TYPE, 5) .duration(0) |