This commit is contained in:
na2na 2022-02-17 00:46:40 +09:00
parent cb01d86029
commit e5e9d0076e

View file

@ -14,10 +14,16 @@ export default class extends Module {
@autobind
private async mentionHook(msg: Message) {
if (msg.text && msg.text.includes('ping')) {
msg.reply('PONG!', {
immediate: true
});
if (msg.text && (msg.text.includes('ping') || msg.text.includes('おい'))) {
if (msg.text.includes('おい')) {
msg.reply('はい。。。', {
immediate: true
});
} else {
msg.reply('PONG!', {
immediate: true
});
}
return true;
} else {
return false;