diff --git a/src/core/Ranks.js b/src/core/Ranks.js index 65f66fd..f637ea2 100644 --- a/src/core/Ranks.js +++ b/src/core/Ranks.js @@ -94,7 +94,7 @@ class Ranks { return; } /* - * don't punish when canvas has less than 22% of + * don't punish when canvas has less than 50% of * daily peak activity */ const { pHourlyStats } = this.ranks; @@ -104,7 +104,7 @@ class Ranks { maxActivity = e; } }); - if (pHourlyStats[0] < maxActivity * 0.22) { + if (pHourlyStats[0] < maxActivity * 0.5) { this.#punishedCountry = null; this.#punishmentFactor = 1.0; return;