Skip to content

Commit

Permalink
revert path change
Browse files Browse the repository at this point in the history
  • Loading branch information
xGinko committed Jan 9, 2025
1 parent 50a8b77 commit 381da6b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ public AuraDelayModule(String configPath, boolean defEnabled, long defPlaceDelay
String typePath = configPath + "." + settingType.name().toLowerCase().replace("_", "-");
boolean enabled = config.getBoolean(typePath + ".enable", false);
Cooldowns cooldowns = new Cooldowns(
config.getLong(configPath + "." + typePath + ".place-delay-millis", defPlaceDelayMillis, "1 tick = 50 ms"),
config.getLong(configPath + "." + typePath + ".break-delay-millis", defBreakDelayMillis));
config.getLong(typePath + ".place-delay-millis", defPlaceDelayMillis, "1 tick = 50 ms"),
config.getLong(typePath + ".break-delay-millis", defBreakDelayMillis));
if (enabled) {
cooldownSettings.put(settingType, cooldowns);
}
Expand Down

0 comments on commit 381da6b

Please sign in to comment.