File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
src/main/java/io/github/mooy1/infinityexpansion/implementation/machines Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 44import io .github .mooy1 .infinityexpansion .lists .InfinityRecipes ;
55import io .github .mooy1 .infinityexpansion .lists .Items ;
66import io .github .mooy1 .infinityexpansion .lists .RecipeTypes ;
7+ import io .github .mooy1 .infinitylib .PluginUtils ;
78import io .github .mooy1 .infinitylib .items .LoreUtils ;
89import io .github .mooy1 .infinitylib .items .StackUtils ;
910import io .github .mooy1 .infinitylib .objects .AbstractContainer ;
@@ -41,8 +42,8 @@ public class InfinityReactor extends AbstractContainer implements EnergyNetProvi
4142
4243 public static final int ENERGY = 180_000 ;
4344 public static final int STORAGE = 40_000_000 ;
44- public static final int INFINITY_INTERVAL = 72000 ;
45- public static final int VOID_INTERVAL = 12000 ;
45+ public static final int INFINITY_INTERVAL = ( int ) ( 86400 * PluginUtils . TICK_RATIO );
46+ public static final int VOID_INTERVAL = ( int ) ( 14400 * PluginUtils . TICK_RATIO ) ;
4647 public static final int [] INPUT_SLOTS = {
4748 MenuPreset .slot1 , MenuPreset .slot3
4849 };
@@ -235,7 +236,7 @@ public List<ItemStack> getDisplayRecipes() {
235236 items .add (null );
236237
237238 item = Items .VOID_INGOT .clone ();
238- LoreUtils .addLore (item , "" , "Lasts for 3 hours" );
239+ LoreUtils .addLore (item , "" , "Lasts for 4 hours" );
239240 items .add (item );
240241 items .add (null );
241242
You can’t perform that action at this time.
0 commit comments