pingのところいじった

This commit is contained in:
na2na 2022-06-14 00:00:00 +09:00
parent b157d0a868
commit 3d44d2d0bf

View file

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