Skip to content

Commit

Permalink
Game log fix
Browse files Browse the repository at this point in the history
  • Loading branch information
WiredMind2 committed Jan 21, 2025
1 parent a81ab6f commit c3ad323
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/game/game_classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,5 @@ class Ofunc:
def __init__(self, channel: discord.TextChannel):
self.channel = channel

async def __call__(self, output: str):
await self.channel.send(output)
async def __call__(self, *args, **kwargs):
await self.channel.send(*args, **kwargs)

0 comments on commit c3ad323

Please sign in to comment.