Skip to content

Commit

Permalink
Fix AE2 compatibilty configurations are not registered correctly. (#1395
Browse files Browse the repository at this point in the history
)

Co-authored-by: screret <68943070+screret@users.noreply.github.com>
  • Loading branch information
YiRanMushroom and screret authored Jun 12, 2024
1 parent d305c7f commit 1fa8b0d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/com/gregtechceu/gtceu/config/ConfigHolder.java
Original file line number Diff line number Diff line change
Expand Up @@ -179,11 +179,13 @@ public static class EnergyCompatConfig {

public static class AE2CompatConfig {

@Configurable
@Configurable.Comment({ "The interval between ME Hatch/Bus interact ME network.",
"It may cause lag if the interval is too small.", "Default: 2 sec" })
@Configurable.Range(min = 1, max = 80)
public int updateIntervals = 40;

@Configurable
@Configurable.Comment({ "The energy consumption of ME Hatch/Bus.", "Default: 1.0AE/t" })
@Configurable.DecimalRange(min = 0.0, max = 10.0)
public double meHatchEnergyUsage = 1.0;
Expand Down

0 comments on commit 1fa8b0d

Please sign in to comment.