Skip to content

Commit

Permalink
Update minimum time-period to 3
Browse files Browse the repository at this point in the history
+ Change minimum time-period to 3 as servers are handling requests well
  • Loading branch information
noahbclarkson committed Jan 18, 2021
1 parent 6339b89 commit fa7dcee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Auto-Tune/src/unprotesting/com/github/util/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,9 @@ public static void loadDefaults() {
Config.setMaxDebt(Main.getMainConfig().getDouble("max-debt-value", -100.00));
Config.setSellPriceDifferenceVariationStart(Main.getMainConfig().getDouble("sell-price-difference-variation-start", 25.0));
Config.setShopConfigGUIShopSellValue(Main.getMainConfig().getDouble("shop-config-guishop-sell-value", 20.00));
if (getTimePeriod() < 4){
Main.debugLog("Time-Period Setting reverting to 4 to reduce memory usage. If you would like lower time periods open a ticket in the offical discord.");
Config.setTimePeriod(4);
if (getTimePeriod() < 3){
Main.debugLog("Time-Period Setting reverting to 3 to reduce memory usage. If you would like lower time periods open a ticket in the offical discord.");
Config.setTimePeriod(3);
}
}

Expand Down

0 comments on commit fa7dcee

Please sign in to comment.