elliebot/src/EllieBot/_common/_Extensions/BotCredentialsExtensions.cs
Toastie 487c7865cb
Fixed greet/bye messages showing wrong message in the wrong server sometimes
Fixed the check for updates service
Version upped to 5.1.12. Updated CHANGELOG.md
2024-10-05 11:44:44 +13:00

10 lines
No EOL
296 B
C#

namespace EllieBot.Extensions;
public static class BotCredentialsExtensions
{
public static bool IsOwner(this IBotCreds creds, IUser user)
=> creds.IsOwner(user.Id);
public static bool IsOwner(this IBotCreds creds, ulong userId)
=> creds.OwnerIds.Contains(userId);
}