made some changes to file structure

This commit is contained in:
Seaswimmer 2023-03-06 22:24:18 -05:00
parent bc439d4bf8
commit d0822ce4b1

View file

@ -1,5 +1,5 @@
import discord import discord
from redbot.core import commands, bank, checks from redbot.core import commands, bank, checks, data_manager
class SugonCredit(commands.Cog): class SugonCredit(commands.Cog):
"""Implements a way for moderators to give out social-credit like points, dubbed 'sugoncredits' by the community.""" """Implements a way for moderators to give out social-credit like points, dubbed 'sugoncredits' by the community."""
@ -80,7 +80,7 @@ class SugonCredit(commands.Cog):
except ValueError: except ValueError:
await ctx.send(content="``amount`` must be a number. Please try again!") await ctx.send(content="``amount`` must be a number. Please try again!")
return return
image = discord.File(fp="remove.mp4", filename="MEGA_BASE") image = discord.File(fp=f"{data_manager.bundled_data_path(SugonCredit)}remove.mp4", filename="MEGA_BASE")
bank_name = await bank.get_bank_name(ctx.guild) bank_name = await bank.get_bank_name(ctx.guild)
currency_name = await bank.get_currency_name(ctx.guild) currency_name = await bank.get_currency_name(ctx.guild)
current_bal = await bank.get_balance(target) current_bal = await bank.get_balance(target)