mirror of
https://github.com/G2-Games/simple-discord-music-bot.git
synced 2025-04-19 07:52:54 -05:00
Added gitignore for pycache
This commit is contained in:
parent
7608c80261
commit
deacd42e6e
3 changed files with 6 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1 +1,2 @@
|
||||||
.env
|
.env
|
||||||
|
__pycache__/
|
||||||
|
|
Binary file not shown.
|
@ -28,7 +28,11 @@ bot = commands.Bot(command_prefix="!",intents=discord.Intents.all(), shard_count
|
||||||
@bot.event
|
@bot.event
|
||||||
async def on_ready():
|
async def on_ready():
|
||||||
print("Bot is ready!")
|
print("Bot is ready!")
|
||||||
await bot.change_presence(activity=discord.Activity(type=discord.ActivityType.listening, name="ななひら"))
|
await bot.change_presence(
|
||||||
|
activity=discord.Activity(
|
||||||
|
type=discord.ActivityType.listening, name="ななひら"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
@bot.command()
|
@bot.command()
|
||||||
|
|
Loading…
Reference in a new issue