回答編集履歴
1
間違いの修正
test
CHANGED
@@ -14,7 +14,7 @@
|
|
14
14
|
|
15
15
|
const command = args.shift().toLowerCase();
|
16
16
|
|
17
|
-
if (command === "send" && args[0]
|
17
|
+
if (command === "send" && args[0] && executableUsers.includes(message.author.id)) {
|
18
18
|
|
19
19
|
await message.reply("送りたいメッセージを送信してください");
|
20
20
|
|
@@ -26,6 +26,8 @@
|
|
26
26
|
|
27
27
|
}
|
28
28
|
|
29
|
+
});
|
30
|
+
|
29
31
|
```
|
30
32
|
|
31
33
|
これでどうでしょうか
|