Skip to content

Commit

Permalink
Remove Char usage
Browse files Browse the repository at this point in the history
  • Loading branch information
monambike committed Feb 8, 2024
1 parent b486049 commit 2fc46cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Commands/Info.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ internal static async Task ExecuteHelpAsync(DiscordChannel discordChannel, Disco
{
Color = Data.ConfigJson.DefaultColor.DiscordColor,
Title = "AJUDA COM COMANDOS",
Description = $@"Lembre-se que pra colocar um comando você precisa colocar o ""{Data.ConfigJson.Prefix}"" na frente!{Environment.NewLine}Você pode usar os comandos em barra ""{Convert.ToChar("\u002F")}"" também!",
Description = $@"Lembre-se que pra colocar um comando você precisa colocar o ""{Data.ConfigJson.Prefix}"" na frente!{Environment.NewLine}Você pode usar os comandos em barra ""/"" também!",
Thumbnail = new DiscordEmbedBuilder.EmbedThumbnail
{
Url = discordClient.CurrentUser.AvatarUrl
Expand Down
3 changes: 2 additions & 1 deletion src/KWiJishoBot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using DSharpPlus.Entities;
using DSharpPlus.SlashCommands;
using KWiJisho.Data;
using System;
using System.Threading.Tasks;
using static KWiJisho.Commands.Prefix.PrefixCommandManager;

Expand Down Expand Up @@ -32,7 +33,7 @@ internal partial class KWiJishoBot
/// <summary>
/// Initializing Discord bot activity class.
/// </summary>
internal static DiscordActivity DiscordActivity => new($"Sou a Kawaii Jisho! 💫 | {ConfigJson.Prefix}{nameof(PrefixInfo.help)}");
internal static DiscordActivity DiscordActivity => new($"{ConfigJson.Prefix}{nameof(PrefixInfo.help)} | Sou a Kawaii Jisho! 💫");

/// <summary>
/// The main entry point method of the application.
Expand Down

0 comments on commit 2fc46cf

Please sign in to comment.