From ce565441c838adf521272f6bd5c8092235ff8a04 Mon Sep 17 00:00:00 2001 From: badgamernl Date: Fri, 6 Nov 2020 22:37:46 +0100 Subject: [PATCH] Removed debug message --- config/expcore/command_color_parse.lua | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/config/expcore/command_color_parse.lua b/config/expcore/command_color_parse.lua index 9b2ae5a6..aac709bd 100644 --- a/config/expcore/command_color_parse.lua +++ b/config/expcore/command_color_parse.lua @@ -8,9 +8,8 @@ Commands.add_parse('color',function(input, player, reject) if not input then return end local color = Colours[input] if not color then - player.print("invalid") - return reject{'expcore-commands.reject-color'} + return reject{'expcore-commands.reject-color'} else - return input + return input end end) \ No newline at end of file