a2bdecb7bb
Less stupidly written. Owner can now set other users' nicknames via reply. patterns.lua: Minor code changes.
24 lines
501 B
Lua
24 lines
501 B
Lua
-- Shout-out to Kenny, as I didn't want to write this until
|
|
-- he upset himself over the very thought of me doing so.
|
|
|
|
local triggers = {
|
|
'^/s/.-/.-/?$'
|
|
}
|
|
|
|
local action = function(msg)
|
|
|
|
if not msg.reply_to_message then return end
|
|
local output = msg.reply_to_message.text or ''
|
|
output = output:gsub(
|
|
msg.text:match('^/s/(.-)/(.-)/?$')
|
|
)
|
|
output = 'Did you mean:\n"' .. output:sub(1, 4000) .. '"'
|
|
sendReply(msg.reply_to_message, output)
|
|
|
|
end
|
|
|
|
return {
|
|
triggers = triggers,
|
|
action = action
|
|
}
|