Fixed Server using commands Bug

This commit is contained in:
Cooldude2606
2019-03-16 18:11:37 +00:00
parent cfaa80d153
commit 89b9d8e164
5 changed files with 23 additions and 13 deletions

View File

@@ -4,5 +4,6 @@ Commands.new_command('me','Sends an action message in the chat')
:add_param('action',false) -- action that is done by the player, just text its meaningless
:enable_auto_concat()
:register(function(player,action,raw)
game.print(string.format('* %s %s *',player.name,action),player.chat_color)
local player_name = player and player.name or '<Server>'
game.print(string.format('* %s %s *',player_name,action),player.chat_color)
end)