We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb01eee commit df72109Copy full SHA for df72109
src/main/java/org/maxgamer/quickshop/QuickShop.java
@@ -854,8 +854,8 @@ public final void onEnable() {
854
limits.put(key, limitCfg.getInt(key));
855
}
856
857
- if (getConfig().getInt("shop.finding.distance") > 100) {
858
- getLogger().severe("Shop find distance is too high! It may cause lag! Pick a number under 100!");
+ if (getConfig().getInt("shop.finding.distance") > 100 && (getConfig().getBoolean("shop.finding.exclude-out-of-stock"))) {
+ getLogger().severe("Shop find distance is too high with chunk loading feature turned on! It may cause lag! Pick a number under 100!");
859
860
861
if (getConfig().getBoolean("use-caching")) {
0 commit comments