diff --git a/resources/admin/player.lua b/resources/admin/player.lua index 733a507..b045491 100644 --- a/resources/admin/player.lua +++ b/resources/admin/player.lua @@ -174,7 +174,7 @@ addEventHandler( "onPlayerQuit", root, function( type, reason, player ) if player and getElementType( player ) == "player" then if type == "Kicked" then - outputChatBox( getPlayerName( player ):gsub( "_", " " ) .. " kicked " .. getPlayerName( source ) .. "." .. ( reason and #reason > 0 and ( " Reason: " .. reason ) or "" ), root, 255, 0, 0 ) + outputChatBox( getPlayerName( player ):gsub( "_", " " ) .. " kicked " .. getPlayerName( source ):gsub( "_", " " ) .. "." .. ( reason and #reason > 0 and ( " Reason: " .. reason ) or "" ), root, 255, 0, 0 ) end end end