From e1f115c17f5d486849c6c113ca0ea19e3eb2a2cc Mon Sep 17 00:00:00 2001 From: DeaDDooMER Date: Wed, 27 Sep 2023 12:50:17 +0300 Subject: [PATCH] options: remove space from default nickname --- src/game/g_options.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/g_options.pas b/src/game/g_options.pas index 93e9199..23bb91b 100644 --- a/src/game/g_options.pas +++ b/src/game/g_options.pas @@ -100,7 +100,7 @@ uses if Result = '' then Result := 'Player' + IntToStr(machine MOD 10000); if n = 1 then - Result := Copy(Result, 1, 12) + ' ' + Result := Copy(Result, 1, 12) else Result := Copy(Result, 1, 10) + ' ' + IntToStr(n) end; -- 2.29.2