1
0
mirror of https://github.com/citizenfx/cfx-server-data.git synced 2025-02-13 09:42:53 +08:00

chat: fix 'joined' message

This commit is contained in:
moscovium 2017-07-15 22:33:05 +02:00
parent 602753f59e
commit 07ba1df6ca

View File

@ -34,7 +34,7 @@ AddEventHandler('__cfx_internal:commandFallback', function(command)
end)
-- player join messages
AddEventHandler('playerActivated', function()
AddEventHandler('playerConnecting', function()
TriggerClientEvent('chatMessage', -1, '', { 255, 255, 255 }, '^2* ' .. GetPlayerName(source) .. ' joined.')
end)