From f59ae1b6b9f65d36d23a7bb3e8364dbf674cae9d Mon Sep 17 00:00:00 2001 From: Michal Orlik Date: Sun, 29 Oct 2023 01:31:07 +0200 Subject: [PATCH] chore: add cooldown check error message --- src/systems/cooldown.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/systems/cooldown.ts b/src/systems/cooldown.ts index 97a6aada23c..ccee6c9b0f7 100644 --- a/src/systems/cooldown.ts +++ b/src/systems/cooldown.ts @@ -394,6 +394,7 @@ class Cooldown extends System { } return result; } catch (e: any) { + error(`Something went wrong during cooldown check: ${e.stack}`); return false; } }