There was an error while loading. Please reload this page.
2 parents bd57fbd + 3530af5 commit 7c39e45Copy full SHA for 7c39e45
1 file changed
src/GitcgNetCord.MainApp/Commands/Slash/CardSlashCommand.cs
@@ -176,10 +176,10 @@ await context.Interaction.ModifyResponseAsync(message =>
176
var topUseCountsStringBuilder = new StringBuilder();
177
for (var i = 0; i < topCharacterUseCounts.Length; i++)
178
{
179
- var card = topCharacterUseCounts[i];
+ var x = topCharacterUseCounts[i];
180
181
topUseCountsStringBuilder.AppendLine(
182
- $"{i + 1}. {card.Name} - {card.UseCount}"
+ $"{i + 1}. {emojis[x.Id.ToString()]} {x.Name} - {x.UseCount}"
183
);
184
}
185
0 commit comments