mirror of
https://github.com/miaowware/qrm2.git
synced 2024-11-19 06:31:54 -05:00
Merge pull request #46 from classabbyamp/img-improvements
more imagecog improvements
This commit is contained in:
commit
6de73ac319
@ -34,7 +34,17 @@ class ImageCog(commands.Cog):
|
|||||||
|
|
||||||
with ctx.typing():
|
with ctx.typing():
|
||||||
if arg not in name:
|
if arg not in name:
|
||||||
arg = 'us'
|
desc = 'Possible arguments are:\n'
|
||||||
|
for abbrev, title in name.items():
|
||||||
|
desc += f'`{abbrev}`: {title}\n'
|
||||||
|
embed = discord.Embed(title=f'Bandplan Not Found!',
|
||||||
|
description=desc,
|
||||||
|
colour=self.gs.colours.bad,
|
||||||
|
timestamp=datetime.utcnow())
|
||||||
|
embed.set_footer(text=ctx.author.name,
|
||||||
|
icon_url=str(ctx.author.avatar_url))
|
||||||
|
await ctx.send(embed=embed)
|
||||||
|
else:
|
||||||
img = discord.File(f"resources/images/bandchart/{arg}bandchart.png",
|
img = discord.File(f"resources/images/bandchart/{arg}bandchart.png",
|
||||||
filename=f'{arg}bandchart.png')
|
filename=f'{arg}bandchart.png')
|
||||||
embed = discord.Embed(title=f'{name[arg]} Amateur Radio Bands',
|
embed = discord.Embed(title=f'{name[arg]} Amateur Radio Bands',
|
||||||
@ -101,7 +111,17 @@ class ImageCog(commands.Cog):
|
|||||||
arg = msg.lower()
|
arg = msg.lower()
|
||||||
with ctx.typing():
|
with ctx.typing():
|
||||||
if arg not in map_titles:
|
if arg not in map_titles:
|
||||||
arg = 'us'
|
desc = 'Possible arguments are:\n'
|
||||||
|
for abbrev, title in map_titles.items():
|
||||||
|
desc += f'`{abbrev}`: {title}\n'
|
||||||
|
embed = discord.Embed(title=f'Map Not Found!',
|
||||||
|
description=desc,
|
||||||
|
colour=self.gs.colours.bad,
|
||||||
|
timestamp=datetime.utcnow())
|
||||||
|
embed.set_footer(text=ctx.author.name,
|
||||||
|
icon_url=str(ctx.author.avatar_url))
|
||||||
|
await ctx.send(embed=embed)
|
||||||
|
else:
|
||||||
img = discord.File(f"resources/images/map/{arg}map.png",
|
img = discord.File(f"resources/images/map/{arg}map.png",
|
||||||
filename=f'{arg}map.png')
|
filename=f'{arg}map.png')
|
||||||
embed = discord.Embed(title=f'{map_titles[arg]} Map',
|
embed = discord.Embed(title=f'{map_titles[arg]} Map',
|
||||||
|
Loading…
Reference in New Issue
Block a user