refactor: rename pencilVersion to botVersion

This commit is contained in:
Oliver Booth 2023-09-06 23:48:00 +01:00
parent acf78be669
commit d2613dbdcb
Signed by: oliverbooth
GPG Key ID: E60B570D1B7557B5
1 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@ internal sealed class InfoCommand : InteractionModuleBase<SocketInteractionConte
public async Task InfoAsync()
{
SocketGuildUser member = Context.Guild.GetUser(_discordClient.CurrentUser.Id);
string pencilVersion = _botService.Version;
string botVersion = _botService.Version;
SocketRole? highestRole = member.Roles.Where(r => r.Color != Color.Default).MaxBy(r => r.Position);
@ -38,13 +38,13 @@ internal sealed class InfoCommand : InteractionModuleBase<SocketInteractionConte
embed.WithAuthor(member);
embed.WithColor(highestRole?.Color ?? Color.Default);
embed.WithThumbnailUrl(member.GetAvatarUrl());
embed.WithTitle($"VPLink v{pencilVersion}");
embed.WithTitle($"VPLink v{botVersion}");
embed.WithDescription("Created by <@94248427663130624>, hosted [on GitHub](https://github.com/oliverbooth/VPLink).");
embed.AddField("Ping", $"{_discordClient.Latency} ms", true);
embed.AddField("Started", $"<t:{_botService.StartedAt.ToUnixTimeSeconds()}:R>", true);
var builder = new StringBuilder();
builder.AppendLine($"VPLink: {pencilVersion}");
builder.AppendLine($"VPLink: {botVersion}");
builder.AppendLine($"Discord.Net: {_botService.DiscordNetVersion}");
builder.AppendLine($"VP#: {_botService.VpSharpVersion}");
builder.AppendLine($"CLR: {Environment.Version.ToString(3)}");