diff --git a/src/NadekoBot/Modules/Xp/XpService.cs b/src/NadekoBot/Modules/Xp/XpService.cs index 0a87bc7b0..4fa126a62 100644 --- a/src/NadekoBot/Modules/Xp/XpService.cs +++ b/src/NadekoBot/Modules/Xp/XpService.cs @@ -1351,7 +1351,7 @@ public class XpService : INService, IReadyExecutor, IExecNoCommand if (!conf.Shop.IsEnabled) return BuyResult.UnknownItem; - if (conf.Shop.TierRequirement != PatronTier.None) + if (conf.Shop.TierRequirement != PatronTier.None && !_creds.IsOwner(userId)) { var patron = await _ps.GetPatronAsync(userId);