Surrogate nur für Sudoer

This commit is contained in:
Andreas Bielawski 2016-08-03 16:58:02 +02:00
parent 83a637bc29
commit e0f53dd205

View File

@ -6,7 +6,11 @@ surrogate.triggers = {
"^/s (@[A-Za-z0-9-_-.-._.]+) +(.+)"
}
function surrogate:action(msg)
function surrogate:action(msg, config, matches)
if not is_sudo(msg, config) then
utilities.send_reply(self, msg, config.errors.sudo)
return
end
utilities.send_message(self, matches[1], matches[2], true, nil, true)
return
end