Merge pull request #9362 from Quasindro/motherlode-respawn-threshold
mlm: fix ore vein max respawn time threshold
This commit is contained in:
@@ -44,7 +44,7 @@ import net.runelite.client.ui.overlay.components.ProgressPieComponent;
|
|||||||
class MiningOverlay extends Overlay
|
class MiningOverlay extends Overlay
|
||||||
{
|
{
|
||||||
// Range of Motherlode vein respawn time - not 100% confirmed but based on observation
|
// 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 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 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);
|
private static final Color DARK_GREEN = new Color(0, 100, 0);
|
||||||
|
|||||||
Reference in New Issue
Block a user