This commit is contained in:
tetsuya-ki 2025-02-02 16:26:00 +09:00
parent 3a5d7f916b
commit e41a3a127a

View file

@ -66,7 +66,7 @@ export default class extends Module {
if (!msg.text.includes('って呼んで')) return false;
if (msg.text.startsWith('って呼んで')) return false;
const name = msg.text.match(/^(.+?)って呼んで/g)![1];
const name = msg.extractedText.match(/\s*(.+?)って呼んで/)![1];
if (name.length > 10) {
msg.reply(serifs.core.tooLong);