From fa7dcee234200eec7ef213fba42dd282941f1dba Mon Sep 17 00:00:00 2001 From: "Noah Clarkson (Unprotesting)" Date: Mon, 18 Jan 2021 21:24:52 +0000 Subject: [PATCH] Update minimum time-period to 3 + Change minimum time-period to 3 as servers are handling requests well --- Auto-Tune/src/unprotesting/com/github/util/Config.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Auto-Tune/src/unprotesting/com/github/util/Config.java b/Auto-Tune/src/unprotesting/com/github/util/Config.java index 814f489..456a984 100644 --- a/Auto-Tune/src/unprotesting/com/github/util/Config.java +++ b/Auto-Tune/src/unprotesting/com/github/util/Config.java @@ -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); } }