Skip to content

Commit

Permalink
chore: Non-ephemeral!
Browse files Browse the repository at this point in the history
  • Loading branch information
itssimple committed Feb 2, 2024
1 parent 04911e3 commit 37d05df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CFDiscordBot/Commands/GameLookup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ int gameId
embed.WithImageUrl(gameInfo.Assets.CoverUrl);
}

await RespondAsync(embeds: new[] { embed.Build() }, ephemeral: true);
await RespondAsync(embeds: new[] { embed.Build() });
}
}
}
3 changes: 1 addition & 2 deletions CFDiscordBot/Commands/ProjectLookup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,7 @@ int projectId
await RespondAsync($"Project `{projectId}` is: **[{mod.Name}](https://cflookup.com/{projectId})**\n" +
$"{summaryText}",
embeds: new[] { projectEmbed.Build() },
components: buttons.Build(),
ephemeral: true
components: buttons.Build()
);
}

Expand Down

0 comments on commit 37d05df

Please sign in to comment.