diff --git a/Boyfriend/CommandProcessor.cs b/Boyfriend/CommandProcessor.cs index f1e9c69..574ad2a 100644 --- a/Boyfriend/CommandProcessor.cs +++ b/Boyfriend/CommandProcessor.cs @@ -127,7 +127,7 @@ public sealed class CommandProcessor { public bool HasPermission(GuildPermission permission) { if (!Context.Guild.CurrentUser.GuildPermissions.Has(permission)) { - Utils.SafeAppendToBuilder(_stackedReplyMessage, $"{ReplyEmojis.NoAccess} {Utils.GetMessage($"BotCannot{permission}")}", + Utils.SafeAppendToBuilder(_stackedReplyMessage, $"{ReplyEmojis.NoPermission} {Utils.GetMessage($"BotCannot{permission}")}", Context.Message); return false; } @@ -135,7 +135,7 @@ public sealed class CommandProcessor { if (Context.Guild.GetUser(Context.User.Id).GuildPermissions.Has(permission) || Context.Guild.OwnerId == Context.User.Id) return true; - Utils.SafeAppendToBuilder(_stackedReplyMessage, $"{ReplyEmojis.NoAccess} {Utils.GetMessage($"UserCannot{permission}")}", + Utils.SafeAppendToBuilder(_stackedReplyMessage, $"{ReplyEmojis.NoPermission} {Utils.GetMessage($"UserCannot{permission}")}", Context.Message); return false; } diff --git a/Boyfriend/Commands/SettingsCommand.cs b/Boyfriend/Commands/SettingsCommand.cs index 58b7120..1a522ac 100644 --- a/Boyfriend/Commands/SettingsCommand.cs +++ b/Boyfriend/Commands/SettingsCommand.cs @@ -33,7 +33,7 @@ public sealed class SettingsCommand : ICommand { .AppendFormat(format, currentValue).AppendLine(); } - cmd.Reply(currentSettings.ToString(), ReplyEmojis.Settings); + cmd.Reply(currentSettings.ToString(), ReplyEmojis.SettingsList); currentSettings.Clear(); return Task.CompletedTask; }