Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
greeeen-dev committed Oct 9, 2024
1 parent dbd897e commit e7b1a38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bridge_revolt.py
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ async def delmod(self, ctx, *, userid):
async def make(self,ctx,*,room=None):
force_private = False
if not ctx.author.id in self.bot.admins:
if self.compatibility_mode or self.bot.config['enable_private_rooms']:
if self.compatibility_mode or not self.bot.config['enable_private_rooms']:
return await ctx.send('Only admins can create rooms.')
force_private = True

Expand Down

0 comments on commit e7b1a38

Please sign in to comment.