#70(他人のリマインダーを操作できる)対応

This commit is contained in:
na2na 2022-04-14 22:01:08 +09:00
parent ab30e4f7f7
commit 4ec8fc7857

View file

@ -123,12 +123,16 @@ export default class extends Module {
const done = msg.includes(['done', 'やった', 'やりました', 'はい']);
const cancel = msg.includes(['やめる', 'やめた', 'キャンセル']);
const isOneself = msg.userId === remind.userId;
if (done || cancel) {
if ((done || cancel) && isOneself) {
this.unsubscribeReply(key);
this.reminds.remove(remind);
msg.reply(done ? getSerif(serifs.reminder.done(msg.friend.name)) : serifs.reminder.cancel);
return;
} else if (isOneself === false) {
msg.reply("イタズラはめっですよ!");
return;
} else {
if (msg.isDm) this.unsubscribeReply(key);
return false;