add country flag to /VM

This commit is contained in:
Elijah R 2024-06-23 14:49:45 -04:00
parent 4027472d9e
commit 11a491bd24

View file

@ -35,6 +35,8 @@ public class DiscordCommands : ApplicationCommandModule
b.Append(":green_circle: ");
break;
}
if (!string.IsNullOrEmpty(user.CountryCode))
b.Append($":flag_{user.CountryCode.ToLower()}: ");
b.Append(user.Username + "\n");
}