Skip to content
This repository has been archived by the owner on Mar 5, 2023. It is now read-only.

Commit

Permalink
A fix on the spacing in the about command
Browse files Browse the repository at this point in the history
  • Loading branch information
Alee14 committed May 7, 2019
1 parent 7189196 commit 1726664
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion AleeBot/Data.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class Data
{
//This will be storing public variables such as versions and stuff.

public static string Version = "3.0";
public static string Version = "3.0.1";
public static string prefix = "ab:";
}
}
2 changes: 1 addition & 1 deletion AleeBot/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ private async Task Message(SocketMessage message)
var embed = new EmbedBuilder();
embed.WithTitle("About AleeBot " + Data.Version);
embed.WithColor(Color.Green);
embed.AddField("Server Information", "Machine Name:" + Environment.MachineName + "\n" + "OS Version:" + Environment.OSVersion + "\n");
embed.AddField("Server Information", "Machine Name: " + Environment.MachineName + "\n" + "OS Version: " + Environment.OSVersion + "\n");
embed.AddField("Contributors", "Andrew (Alee14) - Original creator of AleeBot 1.0 and 2.0");
embed.AddField("Built on", ".NET Core 3 Preview");
await message.Channel.SendMessageAsync(embed: embed.Build());
Expand Down

0 comments on commit 1726664

Please sign in to comment.