mirror of
https://github.com/etlegacy/wolfadmin.git
synced 2024-11-10 06:41:53 +00:00
Fixed !rules not displaying correctly when used with arguments
This commit is contained in:
parent
1ab9877e77
commit
f671d02a5b
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue