1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-01-31 09:09:00 +03:00
Octobot/Boyfriend/Utils.cs

25 lines
789 B
C#
Raw Normal View History

2021-12-07 21:27:27 +03:00
using Discord;
namespace Boyfriend;
2021-12-07 15:52:37 +03:00
public static class Utils {
public static string GetBeep() {
var letters = new[] { "а", "о", "и"};
return "Б" + letters[new Random().Next(3)] + "п! ";
}
2021-12-07 21:27:27 +03:00
[Obsolete("Stop hard-coding things!")]
public static IMessageChannel GetAdminLogChannel() {
if (Boyfriend.Client.GetChannel(870929165141032971) is not IMessageChannel adminLogChannel)
throw new ArgumentException("Invalid admin log channel");
return adminLogChannel;
}
public static string Wrap(string original) {
return original.Trim().Equals("") ? "" : "```" + original.Replace("```", "```") + "```";
}
public static string MentionChannel(ulong id) {
return "<#" + id + ">";
}
2021-12-07 15:52:37 +03:00
}