@@ -155,7 +155,7 @@ public static class ResearchRecipeEntry {
155155 private final ItemStack dataStack ;
156156 private final boolean ignoreNBT ;
157157 private final int duration ;
158- private final int EUt ;
158+ private final long EUt ;
159159 private final int CWUt ;
160160
161161 /**
@@ -167,10 +167,10 @@ public static class ResearchRecipeEntry {
167167 * @param CWUt how much computation per tick this recipe needs if in Research Station
168168 * <p>
169169 * By default, will ignore NBT on researchStack input. If NBT matching is desired, see
170- * {@link #ResearchRecipeEntry(String, ItemStack, ItemStack, boolean, int, int , int)}
170+ * {@link #ResearchRecipeEntry(String, ItemStack, ItemStack, boolean, int, long , int)}
171171 */
172172 public ResearchRecipeEntry (@ NotNull String researchId , @ NotNull ItemStack researchStack ,
173- @ NotNull ItemStack dataStack , int duration , int EUt , int CWUt ) {
173+ @ NotNull ItemStack dataStack , int duration , long EUt , int CWUt ) {
174174 this .researchId = researchId ;
175175 this .researchStack = researchStack ;
176176 this .dataStack = dataStack ;
@@ -189,7 +189,7 @@ public ResearchRecipeEntry(@NotNull String researchId, @NotNull ItemStack resear
189189 * @param CWUt how much computation per tick this recipe needs if in Research Station
190190 */
191191 public ResearchRecipeEntry (@ NotNull String researchId , @ NotNull ItemStack researchStack ,
192- @ NotNull ItemStack dataStack , boolean ignoreNBT , int duration , int EUt , int CWUt ) {
192+ @ NotNull ItemStack dataStack , boolean ignoreNBT , int duration , long EUt , int CWUt ) {
193193 this .researchId = researchId ;
194194 this .researchStack = researchStack ;
195195 this .dataStack = dataStack ;
@@ -222,7 +222,7 @@ public int getDuration() {
222222 return duration ;
223223 }
224224
225- public int getEUt () {
225+ public long getEUt () {
226226 return EUt ;
227227 }
228228
0 commit comments