🐛
This commit is contained in:
@ -8,7 +8,7 @@ from gameLoops import blackjackLoop, fiar, runMonopoly, runHex
|
|||||||
class GamesCog(commands.Cog):
|
class GamesCog(commands.Cog):
|
||||||
|
|
||||||
def __init__(self,client):
|
def __init__(self,client):
|
||||||
"""Runs game stuff"""
|
"""Runs game stuff."""
|
||||||
self.client = client
|
self.client = client
|
||||||
|
|
||||||
# Checks user balance
|
# Checks user balance
|
||||||
|
@ -6,6 +6,7 @@ from funcs import spellFunc, monsterFunc, cap
|
|||||||
class LookupCog(commands.Cog):
|
class LookupCog(commands.Cog):
|
||||||
|
|
||||||
def __init__(self,client):
|
def __init__(self,client):
|
||||||
|
"""Runs lookup commands."""
|
||||||
self.client = client
|
self.client = client
|
||||||
|
|
||||||
# Looks up a spell
|
# Looks up a spell
|
||||||
|
@ -6,6 +6,7 @@ from funcs import logThis, stopServer, helloFunc, roll_dice, imageFunc, nameGen,
|
|||||||
class MiscCog(commands.Cog):
|
class MiscCog(commands.Cog):
|
||||||
|
|
||||||
def __init__(self,client):
|
def __init__(self,client):
|
||||||
|
"""Runs misc commands."""
|
||||||
self.client = client
|
self.client = client
|
||||||
self.client.remove_command("help")
|
self.client.remove_command("help")
|
||||||
|
|
||||||
@ -66,7 +67,7 @@ class MiscCog(commands.Cog):
|
|||||||
async def image(self, ctx):
|
async def image(self, ctx):
|
||||||
randomImage = imageFunc()
|
randomImage = imageFunc()
|
||||||
await ctx.send(randomImage)
|
await ctx.send(randomImage)
|
||||||
|
|
||||||
# Finds a random movie
|
# Finds a random movie
|
||||||
@commands.command()
|
@commands.command()
|
||||||
async def movie(self,ctx):
|
async def movie(self,ctx):
|
||||||
|
@ -5,6 +5,7 @@ from gameLoops import fiar, runMonopoly
|
|||||||
|
|
||||||
class ReactionCog(commands.Cog):
|
class ReactionCog(commands.Cog):
|
||||||
def __init__(self, client):
|
def __init__(self, client):
|
||||||
|
"""Listens for reactions."""
|
||||||
self.client = client
|
self.client = client
|
||||||
|
|
||||||
@commands.Cog.listener()
|
@commands.Cog.listener()
|
||||||
|
@ -6,6 +6,7 @@ from funcs import parseRoll, parseDestiny, critRoll, parseChar, cap
|
|||||||
class SwCog(commands.Cog):
|
class SwCog(commands.Cog):
|
||||||
|
|
||||||
def __init__(self,client):
|
def __init__(self,client):
|
||||||
|
"""Runs star wars commands."""
|
||||||
self.client = client
|
self.client = client
|
||||||
|
|
||||||
# Rolls star wars dice
|
# Rolls star wars dice
|
||||||
|
Reference in New Issue
Block a user