mirror of
https://github.com/etlegacy/wolfadmin.git
synced 2024-11-21 20:01:18 +00:00
Fixed personal messaging commands toggle for mods other than Legacy
This commit is contained in:
parent
5ed7319b3e
commit
3027d49847
1 changed files with 5 additions and 5 deletions
|
@ -40,10 +40,10 @@ function commandPersonalMessage(clientId, command, recipient, ...)
|
|||
end
|
||||
end
|
||||
end
|
||||
commands.addclient("pm", commandPersonalMessage, "", "", true, (settings.get("fs_game") ~= "legacy"))
|
||||
commands.addclient("m", commandPersonalMessage, "", "", true, (settings.get("fs_game") ~= "legacy"))
|
||||
commands.addclient("pm", commandPersonalMessage, "", "", true, (settings.get("fs_game") == "legacy"))
|
||||
commands.addclient("m", commandPersonalMessage, "", "", true, (settings.get("fs_game") == "legacy"))
|
||||
|
||||
function commandPersonalMessage(clientId, command, target, ...)
|
||||
function commandPersonalMessageLegacy(clientId, command, target, ...)
|
||||
if not target or not ... then
|
||||
et.trap_SendConsoleCommand(et.EXEC_APPEND, "csay "..clientId.." \"^9usage: "..commands.getclient("pm")["syntax"].."\";")
|
||||
|
||||
|
@ -91,5 +91,5 @@ function commandPersonalMessage(clientId, command, target, ...)
|
|||
|
||||
return true
|
||||
end
|
||||
commands.addclient("pm", commandPersonalMessage, "", "[^2name^7|^2slot#^7] [^2message^7]", true, (settings.get("fs_game") ~= "legacy"))
|
||||
commands.addclient("m", commandPersonalMessage, "", "[^2name^7|^2slot#^7] [^2message^7]", true, (settings.get("fs_game") ~= "legacy"))
|
||||
commands.addclient("pm", commandPersonalMessageLegacy, "", "[^2name^7|^2slot#^7] [^2message^7]", true, (settings.get("fs_game") ~= "legacy"))
|
||||
commands.addclient("m", commandPersonalMessageLegacy, "", "[^2name^7|^2slot#^7] [^2message^7]", true, (settings.get("fs_game") ~= "legacy"))
|
||||
|
|
Loading…
Reference in a new issue