From 22a9699828572595ff5bdd610a768ee657131626 Mon Sep 17 00:00:00 2001 From: John Ivison Date: Sun, 3 Nov 2024 11:38:52 -0800 Subject: [PATCH] Update crowns inactive and purgatory error messages --- src/errors/errors.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/errors/errors.ts b/src/errors/errors.ts index 851fcba9..3a40f05d 100644 --- a/src/errors/errors.ts +++ b/src/errors/errors.ts @@ -137,7 +137,7 @@ export class InactiveError extends ClientError { constructor() { super( - "you are currently marked as inactive on the server. This is usually updated when you become an active user again, if you think this is an error please speak to a staff member. Otherwise this role should automatically removed after you chat a bit more." + "you have been marked as inactive on this server, and can no longer claim crowns." ); } } @@ -147,7 +147,7 @@ export class PurgatoryError extends ClientError { constructor() { super( - "you have been placed in scrobble purgatory, this means you cannot participate in the crowns game. If you think this is an error please speak to a staff member." + "you have been placed in scrobble purgatory, and can no longer claim crowns." ); } }