adjust punishment

This commit is contained in:
HF 2024-01-01 12:33:43 +01:00
parent 332c1f87ef
commit aa120eca14

View File

@ -126,8 +126,8 @@ class Ranks {
* 20% gets added to their cooldown for every country * 20% gets added to their cooldown for every country
* after the first. Ceiled at 200% * after the first. Ceiled at 200%
*/ */
if (outnumbered >= 2) { if (outnumbered > 2) {
let punishmentFactor = 1 + 0.25 * (outnumbered - 1); let punishmentFactor = 1 + 0.25 * (outnumbered - 2);
if (punishmentFactor > 3) { if (punishmentFactor > 3) {
punishmentFactor = 3; punishmentFactor = 3;
} }