mirror of
https://github.com/syuilo/ai.git
synced 2024-11-12 17:08:00 +00:00
いくつかの機能はメッセージでのみ反応するように
This commit is contained in:
parent
4e8cae7b90
commit
2eb1624da4
|
@ -68,6 +68,9 @@ export default class CoreModule implements IModule {
|
|||
if (!msg.text.includes('って呼んで')) return false;
|
||||
if (msg.text.startsWith('って呼んで')) return false;
|
||||
|
||||
// メッセージのみ
|
||||
if (!msg.isMessage) return true;
|
||||
|
||||
if (msg.friend.love < 5) {
|
||||
msg.reply(serifs.core.requireMoreLove);
|
||||
return true;
|
||||
|
@ -148,6 +151,9 @@ export default class CoreModule implements IModule {
|
|||
if (!msg.text) return false;
|
||||
if (!msg.text.includes('なでなで')) return false;
|
||||
|
||||
// メッセージのみ
|
||||
if (!msg.isMessage) return true;
|
||||
|
||||
//#region 1日に1回だけ親愛度を上げる
|
||||
const today = getDate();
|
||||
|
||||
|
|
Loading…
Reference in a new issue