From e77093625ecf24c862dcd9214021d9d4e53fb968 Mon Sep 17 00:00:00 2001 From: Gyoo Date: Tue, 27 Aug 2024 10:24:36 +0200 Subject: [PATCH] feat: add minimum score amount to render class update for ddr (#1166) --- bot/src/webhookHandlers/classUpdate.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bot/src/webhookHandlers/classUpdate.ts b/bot/src/webhookHandlers/classUpdate.ts index 9cbe89a22..747dd8e4c 100644 --- a/bot/src/webhookHandlers/classUpdate.ts +++ b/bot/src/webhookHandlers/classUpdate.ts @@ -115,6 +115,8 @@ function GetMinimumScores( return 20; } else if (game === "pms") { return 20; + } else if (game === "ddr") { + return 90; } return null;