Skip to content

Commit

Permalink
I did it wrong lol
Browse files Browse the repository at this point in the history
  • Loading branch information
Naamloos committed Oct 25, 2023
1 parent 4b9ad04 commit 5d0799a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ModCore/Commands/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public async Task AboutAsync(InteractionContext ctx)
.AddField("Want to contribute?", "Contributions are always welcome at our [GitHub repo.](https://github.com/Naamloos/ModCore)")
.AddField("Donate?", "Currently, ModCore is hosted off my (Naamloos's) own money. Donations are always welcome over at [Ko-Fi](https://ko-fi.com/Naamloos)!")
.WithThumbnail(ctx.Client.CurrentUser.AvatarUrl)
.WithFooter($"ModCore version {Assembly.GetEntryAssembly().GetCustomAttribute<AssemblyVersionAttribute>().Version}")
.WithFooter($"ModCore v{Assembly.GetEntryAssembly().GetName().Version}")
.Build();

await ctx.CreateResponseAsync(eb, true);
Expand Down Expand Up @@ -89,7 +89,7 @@ public async Task StatusAsync(InteractionContext ctx)
.AddField("💻 Operating System", osVersion.StartsWith("Unix")? fetchLinuxName() : Environment.OSVersion.VersionString, true)
.AddField("🪟 Framework", RuntimeInformation.FrameworkDescription, true)
.AddField("📖 DSharpPlus", ctx.Client.VersionString, true)
.WithFooter($"ModCore version {Assembly.GetEntryAssembly().GetCustomAttribute<AssemblyVersionAttribute>().Version}");
.WithFooter($"ModCore v{Assembly.GetEntryAssembly().GetName().Version}");

await ctx.CreateResponseAsync(embed, true);
}
Expand Down

0 comments on commit 5d0799a

Please sign in to comment.