Compare commits
No commits in common. "e0ad1fc3373b17be4d49859f79ca26310f2d3ae6" and "d2ea1d320444c8a3a5c32f3169159e771a0d5637" have entirely different histories.
e0ad1fc337
...
d2ea1d3204
3 changed files with 13 additions and 13 deletions
|
@ -7,6 +7,4 @@
|
|||
too-many-arguments,
|
||||
too-many-branches,
|
||||
superfluous-parens,
|
||||
invalid-name,
|
||||
too-many-locals,
|
||||
too-many-public-methods
|
||||
invalid-name
|
||||
|
|
|
@ -55,7 +55,7 @@ class Forums(commands.Cog):
|
|||
self.config = Config.get_conf(None, cog_name='Forums', identifier=2352711325)
|
||||
|
||||
@ui.button(label="Yes", style=discord.ButtonStyle.success, emoji="✅")
|
||||
async def resolved_button_yes(self, interaction: discord.Interaction, button: ui.Button): # pylint: disable=unused-variable
|
||||
async def resolved_button_yes(self, interaction: discord.Interaction, button: ui.Button):
|
||||
request_role_ids = await self.config.guild(interaction.guild).request_roles()
|
||||
request_roles = [interaction.guild.get_role(role_id) for role_id in request_role_ids]
|
||||
match = any(role in interaction.user.roles for role in request_roles)
|
||||
|
@ -78,7 +78,7 @@ class Forums(commands.Cog):
|
|||
await interaction.response.send_message(content="You cannot close this thread!", ephemeral=True)
|
||||
|
||||
@ui.button(label="No", style=discord.ButtonStyle.danger, emoji="✖️")
|
||||
async def resolved_button_no(self, interaction: discord.Interaction, button: ui.Button): # pylint: disable=unused-variable
|
||||
async def resolved_button_no(self, interaction: discord.Interaction, button: ui.Button):
|
||||
request_role_ids = await self.config.guild(interaction.guild).request_roles()
|
||||
request_roles = [interaction.guild.get_role(role_id) for role_id in request_role_ids]
|
||||
match = any(role in interaction.user.roles for role in request_roles)
|
||||
|
@ -143,6 +143,7 @@ class Forums(commands.Cog):
|
|||
if role:
|
||||
if role.id in current_list:
|
||||
await ctx.send("This role is already in the allowed roles list!")
|
||||
return
|
||||
else:
|
||||
current_list.append(role.id)
|
||||
await self.config.guild(ctx.guild).request_roles.set(current_list)
|
||||
|
@ -186,7 +187,7 @@ class Forums(commands.Cog):
|
|||
msg = await ctx.reply("Select a forum tag below.")
|
||||
await msg.edit(view=SelectView(msg, options))
|
||||
else:
|
||||
await ctx.reply("Configuration error! Channel does not exist.")
|
||||
await ctx.reply(f"Configuration error! Channel does not exist.")
|
||||
|
||||
class Select(ui.Select):
|
||||
def __init__(self, message, options):
|
||||
|
|
|
@ -101,7 +101,8 @@ class Galaxy(commands.Cog):
|
|||
match = re.search(r'(?<=:)\d+(?=>)', input_string)
|
||||
if match:
|
||||
return int(match.group())
|
||||
return input_string
|
||||
else:
|
||||
return input_string
|
||||
|
||||
@autoreact.command(name="emoji")
|
||||
@app_commands.describe(emoji="Which emoji are you setting Autoreact to use?")
|
||||
|
@ -120,14 +121,14 @@ class Galaxy(commands.Cog):
|
|||
emoji_obj = emoji_to_find
|
||||
break
|
||||
else:
|
||||
await interaction.response.send_message(content="You're trying to set the autoreact emoji to an emoji I don't have access to!", ephemeral=True)
|
||||
await interaction.response.send_message(content=f"You're trying to set the autoreact emoji to an emoji I don't have access to!", ephemeral=True)
|
||||
return
|
||||
await self.config.guild(interaction.guild).autoreact_emoji.set(emoji_obj.id)
|
||||
embed=discord.Embed(color=await self.bot.get_embed_color(None), description=f"Autoreact's emoji has been set to {emoji_obj} ({emoji_obj.id}).")
|
||||
await interaction.response.send_message(embed=embed)
|
||||
else:
|
||||
await self.config.guild(interaction.guild).autoreact_emoji.set('💀')
|
||||
embed=discord.Embed(color=await self.bot.get_embed_color(None), description="Autoreact's emoji has been set to 💀.")
|
||||
embed=discord.Embed(color=await self.bot.get_embed_color(None), description=f"Autoreact's emoji has been set to 💀.")
|
||||
await interaction.response.send_message(embed=embed)
|
||||
|
||||
@autoreact.command(name="set")
|
||||
|
@ -145,7 +146,7 @@ class Galaxy(commands.Cog):
|
|||
async def autoreact_reset(self, interaction: discord.Interaction):
|
||||
"""Resets Autoreact's target."""
|
||||
await self.config.guild(interaction.guild).autoreact_target.set(0)
|
||||
embed=discord.Embed(color=await self.bot.get_embed_color(None), description="Autoreact's target has been reset.")
|
||||
embed=discord.Embed(color=await self.bot.get_embed_color(None), description=f"Autoreact's target has been reset.")
|
||||
await interaction.response.send_message(embed=embed)
|
||||
|
||||
@commands.command()
|
||||
|
@ -188,8 +189,8 @@ class Galaxy(commands.Cog):
|
|||
}
|
||||
try:
|
||||
insurance_dict[f'{ship_class}']
|
||||
except KeyError as error:
|
||||
raise ValueError("Received value is not a valid ship class!") from error
|
||||
except KeyError:
|
||||
raise ValueError("Received value is not a valid ship class!")
|
||||
if ship_class == "super_capital":
|
||||
humanized_class = ship_class.replace("_", " ").title()
|
||||
else:
|
||||
|
@ -347,7 +348,7 @@ class Galaxy(commands.Cog):
|
|||
|
||||
@warehouse.error
|
||||
@unix.error
|
||||
async def faq_handler(self, error):
|
||||
async def faq_handler(self, ctx, error):
|
||||
"""Error Handler for Galaxy."""
|
||||
if isinstance(error, discord.NotFound):
|
||||
return
|
||||
|
|
Loading…
Reference in a new issue