mirror of
https://github.com/syuilo/ai.git
synced 2024-11-22 13:17:59 +00:00
Refactor
This commit is contained in:
parent
fc10a81f2a
commit
668ea62724
|
@ -13,7 +13,9 @@ export default class CoreModule implements IModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
public onMention = (msg: MessageLike) => {
|
public onMention = (msg: MessageLike) => {
|
||||||
if (msg.text && msg.text.includes('って呼んで') && !msg.text.startsWith('って呼んで')) {
|
if (!msg.text) return false;
|
||||||
|
|
||||||
|
if (msg.text.includes('って呼んで') && !msg.text.startsWith('って呼んで')) {
|
||||||
let friend = this.ai.friends.findOne({
|
let friend = this.ai.friends.findOne({
|
||||||
userId: msg.userId
|
userId: msg.userId
|
||||||
});
|
});
|
||||||
|
@ -52,7 +54,7 @@ export default class CoreModule implements IModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
} else if (msg.text && msg.text.includes('おはよう')) {
|
} else if (msg.text.includes('おはよう')) {
|
||||||
const friend = this.ai.friends.findOne({
|
const friend = this.ai.friends.findOne({
|
||||||
userId: msg.userId
|
userId: msg.userId
|
||||||
});
|
});
|
||||||
|
@ -64,7 +66,7 @@ export default class CoreModule implements IModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
} else if (msg.text && msg.text.includes('おやすみ')) {
|
} else if (msg.text.includes('おやすみ')) {
|
||||||
const friend = this.ai.friends.findOne({
|
const friend = this.ai.friends.findOne({
|
||||||
userId: msg.userId
|
userId: msg.userId
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue