Skip to content
This repository has been archived by the owner on Oct 17, 2024. It is now read-only.

Commit

Permalink
await忘れてた
Browse files Browse the repository at this point in the history
  • Loading branch information
takejohn committed May 6, 2024
1 parent c3be5ca commit dbd69a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/perms/commands/perm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ builder
.build(async (interaction, permissionName, group) => {
const connection = db.connection;
if (!interaction.inCachedGuild()) {
interaction.reply({
await interaction.reply({
content: 'このコマンドはサーバー内で使用してください!',
ephemeral: true,
});
Expand Down Expand Up @@ -61,7 +61,7 @@ builder
.build(async (interaction, permissionName) => {
const connection = db.connection;
if (!interaction.inCachedGuild()) {
interaction.reply({
await interaction.reply({
content: 'このコマンドはサーバー内で使用してください!',
ephemeral: true,
});
Expand Down

0 comments on commit dbd69a0

Please sign in to comment.