We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb294a7 commit 626c539Copy full SHA for 626c539
1 file changed
main.py
@@ -21,7 +21,7 @@
21
from discord import ApplicationContext, option
22
from discord.ext import commands
23
from discord.ext.commands import *
24
-from cogs.economy import new_bank, new_wallet, new_userdat
+from cogs.economy import new_userdat
25
from cogs.isocoin import create_isocoin_key
26
27
# Slash option types:
@@ -97,8 +97,8 @@ async def on_ready():
97
98
@client.event
99
async def on_message(ctx):
100
- new_wallet(ctx.author.id)
101
- new_bank(ctx.author.id)
+ currency.new_wallet(ctx.author.id)
+ currency.new_bank(ctx.author.id)
102
create_isocoin_key(ctx.author.id)
103
new_userdat(ctx.author.id)
104
if str(ctx.author.id) not in items: items[str(ctx.author.id)] = {}
0 commit comments