Fix GroundItem Value Setting (#590)

This commit is contained in:
Josh Shippam
2023-02-06 02:47:11 +00:00
committed by GitHub
parent 64f9654377
commit 67efff663e
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -5611,7 +5611,7 @@ public class Game extends RSApplet {
int customTabAction = 0;
static boolean customSettingVisiblePlayerNames = false;
int customSettingMinItemValue = 1;
static int customSettingMinItemValue = Integer.MAX_VALUE;
boolean customSettingShowExperiencePerHour = false;
long customSettingShowExperiencePerHourStartExp = 0;
long customSettingShowExperiencePerHourStart = System.currentTimeMillis();
+1
View File
@@ -33,6 +33,7 @@ public final class Main {
ClientSettings.FIX_TRANSPARENCY_OVERFLOW = true;
ClientSettings.FULL_512PX_VIEWPORT = true;
Game.customSettingVisiblePlayerNames = true;
Game.customSettingMinItemValue = 1000;
break;
case "-no-nav":
case"-disable-nav":