5d26c4289c
+ Reddit_post + Eindeutschung von Reddit + Site_header + Soundcloud + Speedtest + Spotify + Surrogate + Tex + Xkcd + Yourls - Plugin-Name wird nun angezeigt, wenn Bot getriggert wird - Wie immer: kleine Änderungen
17 lines
304 B
Lua
17 lines
304 B
Lua
local surrogate = {}
|
|
|
|
local utilities = require('otouto.utilities')
|
|
|
|
surrogate.triggers = {
|
|
"^/s (%-%d+) +(.+)$",
|
|
"^/s (%d+) +(.+)$"
|
|
}
|
|
|
|
function surrogate:action(msg)
|
|
-- Supergroups don't work!?
|
|
utilities.send_message(self, matches[1], matches[2], true, nil, true)
|
|
return
|
|
end
|
|
|
|
return surrogate
|