Skip to content

Commit

Permalink
Fix info command interact twice
Browse files Browse the repository at this point in the history
  • Loading branch information
minisbett committed Jan 2, 2024
1 parent c179258 commit ae8db60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion huisbot/Modules/Utility/Info.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ public async Task HandleAsync()
await DeferAsync();

// Return the info embed to the user.
await RespondAsync(embed: Embeds.Info(await _osu.IsV1AvailableAsync(), await _osu.IsV2AvailableAsync(), await _huis.IsAvailableAsync()));
await FollowupAsync(embed: Embeds.Info(await _osu.IsV1AvailableAsync(), await _osu.IsV2AvailableAsync(), await _huis.IsAvailableAsync()));
}
}
2 changes: 1 addition & 1 deletion huisbot/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class Program
/// <summary>
/// The version of the application.
/// </summary>
public const string VERSION = "1.7.0";
public const string VERSION = "1.7.1";

/// <summary>
/// The startup time of the application.
Expand Down

0 comments on commit ae8db60

Please sign in to comment.