mirror of
https://github.com/2006-Scape/2006Scape.git
synced 2026-07-02 16:49:03 +00:00
Fix GroundItem Value Setting (#590)
This commit is contained in:
@@ -5611,7 +5611,7 @@ public class Game extends RSApplet {
|
|||||||
|
|
||||||
int customTabAction = 0;
|
int customTabAction = 0;
|
||||||
static boolean customSettingVisiblePlayerNames = false;
|
static boolean customSettingVisiblePlayerNames = false;
|
||||||
int customSettingMinItemValue = 1;
|
static int customSettingMinItemValue = Integer.MAX_VALUE;
|
||||||
boolean customSettingShowExperiencePerHour = false;
|
boolean customSettingShowExperiencePerHour = false;
|
||||||
long customSettingShowExperiencePerHourStartExp = 0;
|
long customSettingShowExperiencePerHourStartExp = 0;
|
||||||
long customSettingShowExperiencePerHourStart = System.currentTimeMillis();
|
long customSettingShowExperiencePerHourStart = System.currentTimeMillis();
|
||||||
|
|||||||
@@ -33,6 +33,7 @@ public final class Main {
|
|||||||
ClientSettings.FIX_TRANSPARENCY_OVERFLOW = true;
|
ClientSettings.FIX_TRANSPARENCY_OVERFLOW = true;
|
||||||
ClientSettings.FULL_512PX_VIEWPORT = true;
|
ClientSettings.FULL_512PX_VIEWPORT = true;
|
||||||
Game.customSettingVisiblePlayerNames = true;
|
Game.customSettingVisiblePlayerNames = true;
|
||||||
|
Game.customSettingMinItemValue = 1000;
|
||||||
break;
|
break;
|
||||||
case "-no-nav":
|
case "-no-nav":
|
||||||
case"-disable-nav":
|
case"-disable-nav":
|
||||||
|
|||||||
Reference in New Issue
Block a user