1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-05-07 06:26:29 +03:00

Prefixes are now taken from a single file

This commit is contained in:
mctaylors 2022-12-06 17:43:01 +03:00
parent 1258496697
commit cec041f096
9 changed files with 65 additions and 52 deletions

View file

@ -1,4 +1,4 @@
using Discord;
using Discord;
using Discord.WebSocket;
namespace Boyfriend.Commands;
@ -24,7 +24,7 @@ public sealed class KickCommand : ICommand {
await toKick.KickAsync(guildKickMessage);
var format = string.Format(Messages.FeedbackMemberKicked, toKick.Mention, Utils.Wrap(reason));
cmd.Reply(format, ":police_car: ");
cmd.Reply(format, Prefixes.Kicked);
cmd.Audit(format);
}
}