diff --git a/js/frontline.js b/js/frontline.js index c395fe5..0650ab9 100644 --- a/js/frontline.js +++ b/js/frontline.js @@ -179,9 +179,9 @@ frontline.update = function () { const secondPlaceMatches = Math.ceil((xpToTargetRank * otherMultiplier) / 1500 + (xpToTargetRank * targetMultiplier) / 1250 + (xpToTargetRank * otherMultiplier) / 1000); const thirdPlaceMatches = Math.ceil((xpToTargetRank * otherMultiplier) / 1500 + (xpToTargetRank * otherMultiplier) / 1250 + (xpToTargetRank * targetMultiplier) / 1000); - const firstPlaceMatchTime = Math.ceil(firstPlaceMatches * 5); - const secondPlaceMatchTime = Math.ceil(secondPlaceMatches * 5); - const thirdPlaceMatchTime = Math.ceil(thirdPlaceMatches * 5); + const firstPlaceMatchTime = Math.ceil(firstPlaceMatches * 20); + const secondPlaceMatchTime = Math.ceil(secondPlaceMatches * 20); + const thirdPlaceMatchTime = Math.ceil(thirdPlaceMatches * 20); const firstPlaceQueueTime = Math.ceil(firstPlaceMatches * 3); const secondPlaceQueueTime = Math.ceil(secondPlaceMatches * 3); const thirdPlaceQueueTime = Math.ceil(thirdPlaceMatches * 3); diff --git a/js/rivalWings.js b/js/rivalWings.js index 78c5bed..85f1795 100644 --- a/js/rivalWings.js +++ b/js/rivalWings.js @@ -67,7 +67,7 @@ rivalWings.update = function () { const totalMatches = Math.ceil(victoryMatches + defeatMatches); - const matchTime = Math.ceil(totalMatches * 5); + const matchTime = Math.ceil(totalMatches * 15); const queueTime = Math.ceil(totalMatches * 3); const totalTime = matchTime + queueTime;