公開範囲を理由に拒否された際のセリフの変更

This commit is contained in:
na2na 2022-04-11 09:52:48 +09:00
parent d42b549585
commit 82bc350345
2 changed files with 8 additions and 1 deletions

View file

@ -59,8 +59,13 @@ export default class extends Module {
const separatorIndex = text.indexOf(' ') > -1 ? text.indexOf(' ') : text.indexOf('\n');
const thing = text.substr(separatorIndex + 1).trim();
if (thing === '' && msg.quoteId == null || msg.visibility === 'followers') {
if (thing === '' && msg.quoteId == null) {
msg.reply(serifs.reminder.invalid);
return true;
}
if (msg.visibility === 'followers') {
msg.reply(serifs.reminder.invalidVisibility);
return {
reaction: '🆖',
immediate: true,

View file

@ -339,6 +339,8 @@ export default {
reminder: {
invalid: 'うーん...',
invalidVisibility: "公開範囲の指定を変えてみて",
reminds: 'やること一覧です!',
notify: (name) => name ? `${name}、これやりましたか?` : `これやりましたか?`,