From aa120eca1432ecc42853fa98a30d9d296cf56b28 Mon Sep 17 00:00:00 2001 From: HF Date: Mon, 1 Jan 2024 12:33:43 +0100 Subject: [PATCH] adjust punishment --- src/core/Ranks.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/Ranks.js b/src/core/Ranks.js index 73cbf22f..65f66fd8 100644 --- a/src/core/Ranks.js +++ b/src/core/Ranks.js @@ -126,8 +126,8 @@ class Ranks { * 20% gets added to their cooldown for every country * after the first. Ceiled at 200% */ - if (outnumbered >= 2) { - let punishmentFactor = 1 + 0.25 * (outnumbered - 1); + if (outnumbered > 2) { + let punishmentFactor = 1 + 0.25 * (outnumbered - 2); if (punishmentFactor > 3) { punishmentFactor = 3; }