diff --git a/PRIVACY.md b/PRIVACY.md index ec9cc90..efc298c 100644 --- a/PRIVACY.md +++ b/PRIVACY.md @@ -52,6 +52,7 @@
hg <letter or word> to guess)wg <word> to guess)tg <A/B/C/D> to guess)img)image commandFork this repository, then:
@@ -100,6 +102,7 @@ providedSkyBot.csproj file.
Create a .env file in the root directory of the project with your bot token:
TOKEN=your-bot-token-here
+PIXABAY_API_KEY=your-pixabay-api-key-here
Then open Config.cs and update the following values:
public static readonly long OwnerId = your-owner-id-here;
diff --git a/SkyBot/Commands/Info/Info.cs b/SkyBot/Commands/Info/Info.cs
index dcd0dd6..0a7a959 100644
--- a/SkyBot/Commands/Info/Info.cs
+++ b/SkyBot/Commands/Info/Info.cs
@@ -79,10 +79,11 @@ namespace SkyBot.Commands
}
var sb = new StringBuilder();
- sb.AppendLine($"**{target.Name}**");
+ sb.AppendLine($"**{target.Name.Trim()}**");
sb.AppendLine($"User ID: `{target.UserId}`");
sb.AppendLine($"Member ID: `{target.Id}`");
sb.AppendLine($"Nickname: `{(string.IsNullOrWhiteSpace(target.Nickname) ? "None" : target.Nickname)}`");
+ sb.AppendLine($"Subscription: `{(string.IsNullOrWhiteSpace(target.User.SubscriptionType) ? "None" : target.User.SubscriptionType)}`");
sb.AppendLine($"Status: `{(string.IsNullOrWhiteSpace(target.Status) ? "None" : target.Status)}`");
sb.AppendLine($"Primary Role: `{target.PrimaryRole?.Name ?? "None"}`");
sb.AppendLine($"Roles: `{string.Join(", ", target.Roles.Select(r => r.Name))}`");