Fixed !rules not displaying correctly when used with arguments

This commit is contained in:
Timo Smit 2019-01-15 21:12:33 +01:00
parent 1ab9877e77
commit f671d02a5b
1 changed files with 3 additions and 3 deletions

View File

@ -34,10 +34,10 @@ function commandRules(clientId, command, rule)
et.trap_SendConsoleCommand(et.EXEC_APPEND, "cchat "..clientId.." \"^drules: ^9"..amountOfRules.." rules (open console for the full list)\";")
et.trap_SendConsoleCommand(et.EXEC_APPEND, "csay "..clientId.." \"^9Type ^2!rules ^d[rule] ^9to announce a specific rule.\";")
else
local rule = rules.get(string.lower(rule))
local ruleText = rules.get(string.lower(rule))
if rule then
et.trap_SendConsoleCommand(et.EXEC_APPEND, "cchat -1 \"^drules: "..rules.get(string.lower(cmdArguments[1])).."\";")
if ruleText then
et.trap_SendConsoleCommand(et.EXEC_APPEND, "cchat -1 \"^drules: "..ruleText.."\";")
end
end