Skip to content

Commit

Permalink
Remove no longer desired configs (#2234)
Browse files Browse the repository at this point in the history
  • Loading branch information
serenibyss committed Dec 2, 2023
1 parent 8263f2c commit 2e97c3f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package gregtech.api.recipes.logic;

import gregtech.common.ConfigHolder;

import org.jetbrains.annotations.NotNull;

/**
Expand All @@ -10,7 +8,7 @@
public class OverclockingLogic {

public static final double STANDARD_OVERCLOCK_VOLTAGE_MULTIPLIER = 4.0;
public static final double STANDARD_OVERCLOCK_DURATION_DIVISOR = ConfigHolder.machines.overclockDivisor;
public static final double STANDARD_OVERCLOCK_DURATION_DIVISOR = 2.0;
public static final double PERFECT_OVERCLOCK_DURATION_DIVISOR = 4.0;

public static final int COIL_EUT_DISCOUNT_TEMPERATURE = 900;
Expand Down
5 changes: 0 additions & 5 deletions src/main/java/gregtech/common/ConfigHolder.java
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,6 @@ public static class MachineOptions {
@Config.Comment({ "Minimum distance betweeb Long Distance Fluid Pipe Endpoints", "Default: 50" })
public int ldFluidPipeMinDistance = 50;

@Config.Comment({ "Divisor for Recipe Duration per Overclock.", "Default: 2.0" })
@Config.RangeDouble(min = 2.0, max = 3.0)
@Config.SlidingOption
public double overclockDivisor = 2.0;

@Config.Comment({ "Whether Steam Multiblocks should use Steel instead of Bronze.", "Default: false" })
public boolean steelSteamMultiblocks = false;

Expand Down

0 comments on commit 2e97c3f

Please sign in to comment.