diff --git a/main.py b/main.py index 5845207..82e157b 100644 --- a/main.py +++ b/main.py @@ -14,7 +14,6 @@ setup_commands(bot) @tasks.loop(minutes=1) async def change_status(): status = random.choice(discord_status) - print(status) await bot.change_presence(activity=discord.Game(name=status)) @bot.event diff --git a/src/state.py b/src/state.py index 9781aa8..14cbd34 100644 --- a/src/state.py +++ b/src/state.py @@ -25,7 +25,7 @@ async def rename_vc(bot: discord.Bot) -> bool: train, destination, route, departure, via, station = random_connection() name = f"{train} nach {destination}" - print(f"Info:{name} from {station}") + print(f"Info: {name} from {station}\n via: {via}") await channel.edit(name=f"{config['formatting']}{name}") return True \ No newline at end of file