From 282fb4f83a0771786dbd074e1cfd780570908107 Mon Sep 17 00:00:00 2001 From: rootdarkarchon Date: Fri, 8 Aug 2025 23:22:45 +0200 Subject: [PATCH] adjust text --- .../Controllers/AuthControllerBase.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MareSynchronosServer/MareSynchronosAuthService/Controllers/AuthControllerBase.cs b/MareSynchronosServer/MareSynchronosAuthService/Controllers/AuthControllerBase.cs index 5b4e4ad..eb88b4e 100644 --- a/MareSynchronosServer/MareSynchronosAuthService/Controllers/AuthControllerBase.cs +++ b/MareSynchronosServer/MareSynchronosAuthService/Controllers/AuthControllerBase.cs @@ -46,7 +46,7 @@ public abstract class AuthControllerBase : Controller if (await IsIdentBanned(dbContext, charaIdent)) { Logger.LogWarning("Authenticate:IDENTBAN:{id}:{ident}", authResult.Uid, charaIdent); - return Unauthorized("Your XIV service account is banned from using the service."); + return Unauthorized("Your character is banned from using the service."); } if (!authResult.Success && !authResult.TempBan) @@ -57,7 +57,7 @@ public abstract class AuthControllerBase : Controller if (!authResult.Success && authResult.TempBan) { Logger.LogWarning("Authenticate:TEMPBAN:{id}:{ident}", authResult.Uid ?? "NOUID", charaIdent); - return Unauthorized("Due to an excessive amount of failed authentication attempts you are temporarily banned. Check your Secret Key configuration and try connecting again in 5 minutes."); + return Unauthorized("Due to an excessive amount of failed authentication attempts you are temporarily locked out. Check your Secret Key configuration and try connecting again in 5 minutes."); } if (authResult.Permaban || authResult.MarkedForBan)