Skip to content

Commit 2bccbf9

Browse files
committed
Core: Up the limit a little
1 parent 795b793 commit 2bccbf9

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Core.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -391,8 +391,8 @@ do
391391

392392
local function UpdatePredictor()
393393
if aIncrease ~= prevAIncrease or hIncrease ~= prevHIncrease or timeBetweenEachTick ~= prevTick then
394-
if aIncrease > 60 or hIncrease > 60 or aIncrease < 0 or hIncrease < 0 then -- Scores can reduce in DG
395-
curMod:StopBar(prevText) -- >60 increase means captured a flag/cart in EotS/DG
394+
if aIncrease > 65 or hIncrease > 65 or aIncrease < 0 or hIncrease < 0 then -- Scores can reduce in DG
395+
curMod:StopBar(prevText) -- >65 increase means captured a flag/cart in EotS/DG
396396
prevAIncrease, prevHIncrease = -1, -1
397397
return
398398
end

Core_BCC.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -394,8 +394,8 @@ do
394394

395395
local function UpdatePredictor()
396396
if aIncrease ~= prevAIncrease or hIncrease ~= prevHIncrease or timeBetweenEachTick ~= prevTick then
397-
if aIncrease > 60 or hIncrease > 60 --[[or aIncrease < 0 or hIncrease < 0]] then -- Scores can reduce in DG
398-
curMod:StopBar(prevText) -- >60 increase means captured a flag/cart in EotS/DG
397+
if aIncrease > 65 or hIncrease > 65 --[[or aIncrease < 0 or hIncrease < 0]] then -- Scores can reduce in DG
398+
curMod:StopBar(prevText) -- >65 increase means captured a flag/cart in EotS/DG
399399
prevAIncrease, prevHIncrease = -1, -1
400400
return
401401
end

Core_Vanilla.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -394,8 +394,8 @@ do
394394

395395
local function UpdatePredictor()
396396
if aIncrease ~= prevAIncrease or hIncrease ~= prevHIncrease or timeBetweenEachTick ~= prevTick then
397-
if aIncrease > 60 or hIncrease > 60 --[[or aIncrease < 0 or hIncrease < 0]] then -- Scores can reduce in DG
398-
curMod:StopBar(prevText) -- >60 increase means captured a flag/cart in EotS/DG
397+
if aIncrease > 65 or hIncrease > 65 --[[or aIncrease < 0 or hIncrease < 0]] then -- Scores can reduce in DG
398+
curMod:StopBar(prevText) -- >65 increase means captured a flag/cart in EotS/DG
399399
prevAIncrease, prevHIncrease = -1, -1
400400
return
401401
end

Core_Wrath.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -394,8 +394,8 @@ do
394394

395395
local function UpdatePredictor()
396396
if aIncrease ~= prevAIncrease or hIncrease ~= prevHIncrease or timeBetweenEachTick ~= prevTick then
397-
if aIncrease > 60 or hIncrease > 60 --[[or aIncrease < 0 or hIncrease < 0]] then -- Scores can reduce in DG
398-
curMod:StopBar(prevText) -- >60 increase means captured a flag/cart in EotS/DG
397+
if aIncrease > 65 or hIncrease > 65 --[[or aIncrease < 0 or hIncrease < 0]] then -- Scores can reduce in DG
398+
curMod:StopBar(prevText) -- >65 increase means captured a flag/cart in EotS/DG
399399
prevAIncrease, prevHIncrease = -1, -1
400400
return
401401
end

0 commit comments

Comments
 (0)