Skip to content

Commit

Permalink
adjust button
Browse files Browse the repository at this point in the history
  • Loading branch information
th0mk committed Jan 5, 2025
1 parent ef94ea2 commit 82451ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/FMBot.Bot/Builders/GameBuilders.cs
Original file line number Diff line number Diff line change
Expand Up @@ -170,10 +170,10 @@ public async Task<ResponseModel> StartPixelJumble(ContextModel context, int user
response.ResponseType = ResponseType.Embed;
response.Embed.WithColor(DiscordConstants.InformationColorBlue);
response.Embed.WithDescription(
$"You've used up all your {jumbleLimit} pixel jumbles of today. [Get supporter]({Constants.GetSupporterDiscordLink}) to play unlimited jumble games and much more.");
$"You've used up all your {jumbleLimit} pixel jumbles of today. Get supporter to play unlimited jumble games and much more.");
response.Components = new ComponentBuilder()
.WithButton(Constants.GetSupporterButton, style: ButtonStyle.Link,
url: Constants.GetSupporterDiscordLink);
.WithButton(Constants.GetSupporterButton, style: ButtonStyle.Primary,
customId: InteractionConstants.SupporterLinks.GetPurchaseButtonsDefault);
response.CommandResponse = CommandResponse.SupporterRequired;
return response;
}
Expand Down

0 comments on commit 82451ee

Please sign in to comment.