More home

This commit is contained in:
syuilo 2019-07-06 22:52:19 +09:00
parent 5f87d8517d
commit ec4f35185d

View file

@ -156,13 +156,13 @@ export default class extends Module {
@autobind @autobind
private erait(msg: Message): boolean { private erait(msg: Message): boolean {
const match = msg.extractedText.match(/(.+?)たから(褒|ほ)めて/); const match = msg.extractedText.match(/(.+?)た(から|ので)(褒|ほ)めて/);
if (match) { if (match) {
msg.reply(getSerif(serifs.core.erait.specify(match[1], msg.friend.name))); msg.reply(getSerif(serifs.core.erait.specify(match[1], msg.friend.name)));
return true; return true;
} }
const match2 = msg.extractedText.match(/(.+?)るから(褒|ほ)めて/); const match2 = msg.extractedText.match(/(.+?)る(から|ので)(褒|ほ)めて/);
if (match2) { if (match2) {
msg.reply(getSerif(serifs.core.erait.specify(match2[1], msg.friend.name))); msg.reply(getSerif(serifs.core.erait.specify(match2[1], msg.friend.name)));
return true; return true;