From 2754faf98fa58f3c8312a457b50cc290e7c8ec8c Mon Sep 17 00:00:00 2001 From: Timo Smit Date: Wed, 16 Jan 2019 11:51:46 +0100 Subject: [PATCH] Fixed syntax for private message command --- luascripts/wolfadmin/commands/client/pm.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/luascripts/wolfadmin/commands/client/pm.lua b/luascripts/wolfadmin/commands/client/pm.lua index 8d73e31..34e911f 100644 --- a/luascripts/wolfadmin/commands/client/pm.lua +++ b/luascripts/wolfadmin/commands/client/pm.lua @@ -91,5 +91,5 @@ function commandPersonalMessage(clientId, command, target, ...) return true 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, "", "[^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"))