mirror of
https://github.com/Spengreb/sync.git
synced 2026-05-14 19:42:06 +00:00
10 lines
266 B
JavaScript
10 lines
266 B
JavaScript
|
|
function handle(chan, user, msg) {
|
||
|
|
if(msg.indexOf("/me ") == 0)
|
||
|
|
chan.sendMessage(user.name, msg.substring(4), "action");
|
||
|
|
else if(msg.indexOf("/sp ") == 0)
|
||
|
|
chan.sendMessage(user.name, msg.substring(4), "spoiler");
|
||
|
|
}
|
||
|
|
|
||
|
|
exports.handle = handle;
|
||
|
|
|