From 848207d8db5ce13785a089b4dba122bb4650eaea Mon Sep 17 00:00:00 2001 From: badgamernl Date: Fri, 6 Nov 2020 22:39:58 +0100 Subject: [PATCH] Fixed unused argument player --- config/expcore/command_color_parse.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/expcore/command_color_parse.lua b/config/expcore/command_color_parse.lua index aac709bd..dafcd4ab 100644 --- a/config/expcore/command_color_parse.lua +++ b/config/expcore/command_color_parse.lua @@ -4,7 +4,7 @@ local Commands = require 'expcore.commands' --- @dep expcore.commands local Colours = require 'utils.color_presets' --- @dep utils.color_presets -Commands.add_parse('color',function(input, player, reject) +Commands.add_parse('color',function(input, _, reject) if not input then return end local color = Colours[input] if not color then