diff --git a/src/main/java/gregtech/api/recipes/builders/AssemblyLineRecipeBuilder.java b/src/main/java/gregtech/api/recipes/builders/AssemblyLineRecipeBuilder.java index dc711dd0a0a..f4353c42477 100644 --- a/src/main/java/gregtech/api/recipes/builders/AssemblyLineRecipeBuilder.java +++ b/src/main/java/gregtech/api/recipes/builders/AssemblyLineRecipeBuilder.java @@ -155,7 +155,7 @@ public static class ResearchRecipeEntry { private final ItemStack dataStack; private final boolean ignoreNBT; private final int duration; - private final int EUt; + private final long EUt; private final int CWUt; /** @@ -167,10 +167,10 @@ public static class ResearchRecipeEntry { * @param CWUt how much computation per tick this recipe needs if in Research Station *
* By default, will ignore NBT on researchStack input. If NBT matching is desired, see
- * {@link #ResearchRecipeEntry(String, ItemStack, ItemStack, boolean, int, int, int)}
+ * {@link #ResearchRecipeEntry(String, ItemStack, ItemStack, boolean, int, long, int)}
*/
public ResearchRecipeEntry(@NotNull String researchId, @NotNull ItemStack researchStack,
- @NotNull ItemStack dataStack, int duration, int EUt, int CWUt) {
+ @NotNull ItemStack dataStack, int duration, long EUt, int CWUt) {
this.researchId = researchId;
this.researchStack = researchStack;
this.dataStack = dataStack;
@@ -189,7 +189,7 @@ public ResearchRecipeEntry(@NotNull String researchId, @NotNull ItemStack resear
* @param CWUt how much computation per tick this recipe needs if in Research Station
*/
public ResearchRecipeEntry(@NotNull String researchId, @NotNull ItemStack researchStack,
- @NotNull ItemStack dataStack, boolean ignoreNBT, int duration, int EUt, int CWUt) {
+ @NotNull ItemStack dataStack, boolean ignoreNBT, int duration, long EUt, int CWUt) {
this.researchId = researchId;
this.researchStack = researchStack;
this.dataStack = dataStack;
@@ -222,7 +222,7 @@ public int getDuration() {
return duration;
}
- public int getEUt() {
+ public long getEUt() {
return EUt;
}
diff --git a/src/main/java/gregtech/api/recipes/builders/ResearchRecipeBuilder.java b/src/main/java/gregtech/api/recipes/builders/ResearchRecipeBuilder.java
index b20da993e70..6f47f7f6c22 100644
--- a/src/main/java/gregtech/api/recipes/builders/ResearchRecipeBuilder.java
+++ b/src/main/java/gregtech/api/recipes/builders/ResearchRecipeBuilder.java
@@ -17,7 +17,7 @@ public abstract class ResearchRecipeBuilder