From ab44735c1b558c93cfdc53e7203f463b839abbac Mon Sep 17 00:00:00 2001 From: Cooldude2606 Date: Fri, 8 Mar 2019 19:01:46 +0000 Subject: [PATCH] Fixed Tag Bug --- modules/commands/tag.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/commands/tag.lua b/modules/commands/tag.lua index 126ff5db..f8f8d1d9 100644 --- a/modules/commands/tag.lua +++ b/modules/commands/tag.lua @@ -5,7 +5,7 @@ Commands.new_command('tag','Sets your player tag.') :add_param('tag',false,'string-max-length',20) -- new tag for your player max 20 char :enable_auto_concat() :register(function(player,tag,raw) - player.tag = ' - '..tag + player.tag = '- '..tag end) Commands.new_command('tag-clear','Clears your tag. Or another player if you are admin.')