From 39559951553e0a5d876e3ea64e1f19f2ba56043d Mon Sep 17 00:00:00 2001 From: Thibault Duplessis Date: Mon, 19 Oct 2015 01:06:56 +0200 Subject: [PATCH] tweak classical and variants rating regulation --- modules/rating/src/main/Regulator.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/rating/src/main/Regulator.scala b/modules/rating/src/main/Regulator.scala index 55a96450bf..2afaab60df 100644 --- a/modules/rating/src/main/Regulator.scala +++ b/modules/rating/src/main/Regulator.scala @@ -15,6 +15,6 @@ object Regulator { private def regulationDivider(perfType: PerfType): Int = perfType match { case PerfType.Bullet => 70 case PerfType.Blitz => 50 - case _ => 40 + case _ => 35 } }