Removed debug message

This commit is contained in:
badgamernl
2020-11-06 22:37:46 +01:00
parent 1f549688fa
commit ce565441c8

View File

@@ -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)