diff --git a/src/main/java/cc/fascinated/bat/command/InternalCommandInfo.java b/src/main/java/cc/fascinated/bat/command/InternalCommandInfo.java index d74f547..22cffc7 100644 --- a/src/main/java/cc/fascinated/bat/command/InternalCommandInfo.java +++ b/src/main/java/cc/fascinated/bat/command/InternalCommandInfo.java @@ -53,7 +53,7 @@ public class InternalCommandInfo { description = annotation.description(); category = annotation.category(); permissions = annotation.requiredPermissions(); - guildOnly = annotation.guildOnly(); + guildOnly = annotation.guildOnly() && !annotation.userInstall(); userInstall = annotation.userInstall(); botOwnerOnly = annotation.botOwnerOnly(); }