diff --git a/aquabot.py b/aquabot.py index b13cd5a..62d73ea 100644 --- a/aquabot.py +++ b/aquabot.py @@ -68,7 +68,7 @@ async def on_ready(): print(startup) activity_name = f"with water | {PREFIX}aquabot" - activity = discord.Activity(activity_name=name, type=discord.ActivityType.playing) + activity = discord.Activity(name=activity_name, type=discord.ActivityType.playing) await bot.change_presence(activity=activity) print("AquaBot is ready!\n") diff --git a/docker-compose.yml.example b/docker-compose.yml.example index bf1e02d..e3de2cc 100644 --- a/docker-compose.yml.example +++ b/docker-compose.yml.example @@ -4,4 +4,9 @@ services: aquabot: image: aquabot:latest environment: - restart: always \ No newline at end of file + restart: always + volumes: + - ./data:/data + +volumes: + data: \ No newline at end of file