aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjani270 <69345714+jani270@users.noreply.github.com>2024-04-11 22:24:03 +0200
committerGitHub <noreply@github.com>2024-04-11 22:24:03 +0200
commit810d9c3bdbfc2323bf9ddc76f944e39aa8b86fbf (patch)
tree38920f99e42e896e86f1c85b39cf479506a6174b
parentff8fff15ffd33392ef596bc8e393eac8207ee0d4 (diff)
downloadNotEnoughUpdates-810d9c3bdbfc2323bf9ddc76f944e39aa8b86fbf.tar.gz
NotEnoughUpdates-810d9c3bdbfc2323bf9ddc76f944e39aa8b86fbf.tar.bz2
NotEnoughUpdates-810d9c3bdbfc2323bf9ddc76f944e39aa8b86fbf.zip
Fix Bazaar Overpay Warning being too low (#1087)
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/BazaarTweaks.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/BazaarTweaks.java b/src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/BazaarTweaks.java
index f29cc97c..35f000ec 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/BazaarTweaks.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/BazaarTweaks.java
@@ -78,5 +78,5 @@ public class BazaarTweaks {
desc = "Warns you before you would pay more than this amount of coins for an item in the /bz"
)
@ConfigEditorSlider(minValue = 0, maxValue = 500_000_000, minStep = 1)
- public double bazaarOverpayWarning = 1_000_000;
+ public double bazaarOverpayWarning = 10_000_000;
}