From 79020e3b1e234ca8062ba8c876d375d2d4eebe5b Mon Sep 17 00:00:00 2001 From: Berk Date: Fri, 8 May 2026 23:20:44 +0300 Subject: [PATCH] fix: typo 'handline' -> 'handling' in websocket error log (#3880) ## Description: Fixes a typo in `GameServer.ts` - `handline` should be `handling` in the websocket error log message. ## Please complete the following: - [X] I have added screenshots for all UI updates - [X] I process any text displayed to the user through translateText() and I've added it to the en.json file - [X] I have added relevant tests to the test directory - [X] I confirm I have thoroughly tested these changes and take full responsibility for any bugs introduced ## Please put your Discord username so you can be contacted if a bug or regression is found: barfires --- src/server/GameServer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/GameServer.ts b/src/server/GameServer.ts index 471ea3904..e2213de07 100644 --- a/src/server/GameServer.ts +++ b/src/server/GameServer.ts @@ -574,7 +574,7 @@ export class GameServer { } } catch (error) { this.log.info( - `error handline websocket request in game server: ${error}`, + `error handling websocket request in game server: ${error}`, { clientID: client.clientID, },