Merge pull request #9362 from Quasindro/motherlode-respawn-threshold

mlm: fix ore vein max respawn time threshold
This commit is contained in:
Adam
2019-07-15 14:13:20 -04:00
committed by GitHub

View File

@@ -44,7 +44,7 @@ import net.runelite.client.ui.overlay.components.ProgressPieComponent;
class MiningOverlay extends Overlay
{
// Range of Motherlode vein respawn time - not 100% confirmed but based on observation
static final int ORE_VEIN_MAX_RESPAWN_TIME = 123;
static final int ORE_VEIN_MAX_RESPAWN_TIME = 166;
private static final int ORE_VEIN_MIN_RESPAWN_TIME = 90;
private static final float ORE_VEIN_RANDOM_PERCENT_THRESHOLD = (float) ORE_VEIN_MIN_RESPAWN_TIME / ORE_VEIN_MAX_RESPAWN_TIME;
private static final Color DARK_GREEN = new Color(0, 100, 0);