We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7018b83 commit 2a6bfbeCopy full SHA for 2a6bfbe
backend/src/api/controllers/result.ts
@@ -284,6 +284,15 @@ export async function addResult(
284
await addImportantLog("suspicious_user_result", completedEvent, uid);
285
}
286
287
+ if (
288
+ completedEvent.mode === "time" &&
289
+ (completedEvent.mode2 === "60" || completedEvent.mode2 === "15") &&
290
+ completedEvent.wpm > 250 &&
291
+ user.lbOptOut !== true
292
+ ) {
293
+ await addImportantLog("highwpm_user_result", completedEvent, uid);
294
+ }
295
+
296
if (anticheatImplemented()) {
297
if (
298
!validateResult(
0 commit comments