There was an error while loading. Please reload this page.
1 parent 007558d commit 3530af5Copy full SHA for 3530af5
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