temporary bugfix command
This commit is contained in:
parent
c0f51c16ba
commit
55cc943c50
1 changed files with 7 additions and 0 deletions
|
@ -7,6 +7,13 @@ class Galaxy(commands.Cog):
|
||||||
def __init__(self, bot):
|
def __init__(self, bot):
|
||||||
self.bot = bot
|
self.bot = bot
|
||||||
|
|
||||||
|
@commands.command()
|
||||||
|
async def warehouset(self, ctx: commands.Context, *, lvlfrom: int, lvlto: int):
|
||||||
|
print(lvlfrom)
|
||||||
|
print(lvlto)
|
||||||
|
temp = isinstance(lvlfrom,int)
|
||||||
|
print(str(temp))
|
||||||
|
|
||||||
@commands.command()
|
@commands.command()
|
||||||
async def warehouse(self, ctx: commands.Context, *, lvlfrom: int, lvlto: int):
|
async def warehouse(self, ctx: commands.Context, *, lvlfrom: int, lvlto: int):
|
||||||
"""Calculates the total cost to upgrade your warehouse from a level to a level."""
|
"""Calculates the total cost to upgrade your warehouse from a level to a level."""
|
||||||
|
|
Loading…
Reference in a new issue