mirror of
https://github.com/syuilo/ai.git
synced 2024-11-09 15:38:00 +00:00
shutdown
This commit is contained in:
parent
a1715b6df0
commit
8b52efea4c
|
@ -37,7 +37,8 @@ export default class CoreModule implements IModule {
|
|||
this.humu(msg) ||
|
||||
this.batou(msg) ||
|
||||
this.ponkotu(msg) ||
|
||||
this.rmrf(msg)
|
||||
this.rmrf(msg) ||
|
||||
this.shutdown(msg)
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -328,6 +329,16 @@ export default class CoreModule implements IModule {
|
|||
};
|
||||
}
|
||||
|
||||
private shutdown = (msg: MessageLike): boolean | Result => {
|
||||
if (!msg.includes(['shutdown'])) return false;
|
||||
|
||||
msg.reply(serifs.core.shutdown);
|
||||
|
||||
return {
|
||||
reaction: 'confused'
|
||||
};
|
||||
}
|
||||
|
||||
public onReplyThisModule = (msg: MessageLike, data: any) => {
|
||||
if (msg.text == null) return;
|
||||
|
||||
|
|
|
@ -98,7 +98,9 @@ export default {
|
|||
normal: '(じとー…)',
|
||||
|
||||
hate: '…頭大丈夫ですか?'
|
||||
}
|
||||
},
|
||||
|
||||
shutdown: '私まだ眠くないですよ...?',
|
||||
},
|
||||
|
||||
keyword: {
|
||||
|
|
Loading…
Reference in a new issue