Minor changes
This commit is contained in:
@@ -20,13 +20,13 @@ class Utility(commands.Cog):
|
|||||||
|
|
||||||
# COG BODY
|
# COG BODY
|
||||||
@commands.command(name="invitelink", aliases=["invite"])
|
@commands.command(name="invitelink", aliases=["invite"])
|
||||||
async def invite_link(self, ctx, age=60*10, uses=100, unique=True):
|
async def invite_link(self, ctx, age=60*10, uses=100):
|
||||||
"""
|
"""
|
||||||
Sends the server's invitelink to chat
|
Sends the server's invitelink to chat
|
||||||
"""
|
"""
|
||||||
#age = 60 * 10
|
#age = 60 * 10
|
||||||
#uses = 100
|
#uses = 100
|
||||||
#unique = True
|
unique = True
|
||||||
|
|
||||||
channel = ctx.message.channel
|
channel = ctx.message.channel
|
||||||
link = await channel.create_invite(
|
link = await channel.create_invite(
|
||||||
@@ -41,7 +41,7 @@ class Utility(commands.Cog):
|
|||||||
value=link,
|
value=link,
|
||||||
inline=True)
|
inline=True)
|
||||||
link_embed.set_footer(
|
link_embed.set_footer(
|
||||||
text=f"Age: {age}, Uses: {uses}, Unique: {unique}",
|
text=f"Age: {age}, Uses: {uses}",
|
||||||
icon_url=loadconfig.__avatar__
|
icon_url=loadconfig.__avatar__
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -24,7 +24,16 @@ girl_megumin = [
|
|||||||
|
|
||||||
girl_akeno = []
|
girl_akeno = []
|
||||||
|
|
||||||
girl_rem = []
|
girl_rem = [
|
||||||
|
"https://i.imgur.com/8HNv6ow.jpg",
|
||||||
|
"https://i.imgur.com/GEhYHKi.png",
|
||||||
|
"https://i.imgur.com/5dtXgEc.jpg",
|
||||||
|
"https://i.imgur.com/MV3ancf.png",
|
||||||
|
"https://i.imgur.com/yJCw8MX.jpg",
|
||||||
|
"https://i.imgur.com/jEGpRn2.jpg",
|
||||||
|
"https://i.imgur.com/y0DP3wL.jpg",
|
||||||
|
"https://i.imgur.com/cVNMUgi.jpg",
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
# Exports
|
# Exports
|
||||||
|
|||||||
@@ -9,7 +9,8 @@ loadconfig.py then gets called in aquabot.py
|
|||||||
import yaml
|
import yaml
|
||||||
|
|
||||||
# Variable Gathering
|
# Variable Gathering
|
||||||
__avatar__ = "https://i.imgur.com/mskM9dH.png"
|
__avatar_old__ = "https://i.imgur.com/mskM9dH.png"
|
||||||
|
__avatar__ = "https://i.redd.it/0uajctrps9u41.jpg"
|
||||||
|
|
||||||
try:
|
try:
|
||||||
with open("config/config.yml") as file:
|
with open("config/config.yml") as file:
|
||||||
|
|||||||
Reference in New Issue
Block a user