From 25f9952c671f181f92f2db11db36fadda9037b4b Mon Sep 17 00:00:00 2001 From: IceHax Date: Wed, 26 Sep 2018 17:53:21 +0200 Subject: [PATCH] fix names with color codes coloring the whole console. --- resources/[system]/hardcap/server.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/[system]/hardcap/server.lua b/resources/[system]/hardcap/server.lua index bce633d..bb54756 100644 --- a/resources/[system]/hardcap/server.lua +++ b/resources/[system]/hardcap/server.lua @@ -20,7 +20,7 @@ end) AddEventHandler('playerConnecting', function(name, setReason) local cv = GetConvarInt('sv_maxclients', 32) - print('Connecting: ' .. name) + print('Connecting: ' .. name .. '^7') if playerCount >= cv then print('Full. :(')