mirror of
https://github.com/syuilo/ai.git
synced 2024-11-09 23:48:01 +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.includes('って呼んで')) return false;
|
||||||
if (msg.text.startsWith('って呼んで')) return false;
|
if (msg.text.startsWith('って呼んで')) return false;
|
||||||
|
|
||||||
|
// メッセージのみ
|
||||||
|
if (!msg.isMessage) return true;
|
||||||
|
|
||||||
if (msg.friend.love < 5) {
|
if (msg.friend.love < 5) {
|
||||||
msg.reply(serifs.core.requireMoreLove);
|
msg.reply(serifs.core.requireMoreLove);
|
||||||
return true;
|
return true;
|
||||||
|
@ -148,6 +151,9 @@ export default class CoreModule implements IModule {
|
||||||
if (!msg.text) return false;
|
if (!msg.text) return false;
|
||||||
if (!msg.text.includes('なでなで')) return false;
|
if (!msg.text.includes('なでなで')) return false;
|
||||||
|
|
||||||
|
// メッセージのみ
|
||||||
|
if (!msg.isMessage) return true;
|
||||||
|
|
||||||
//#region 1日に1回だけ親愛度を上げる
|
//#region 1日に1回だけ親愛度を上げる
|
||||||
const today = getDate();
|
const today = getDate();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue