Skip to content

Commit

Permalink
Remove some debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
TrustyJAID committed Feb 26, 2024
1 parent a435b6d commit 660d66a
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions adventure/game_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,6 @@ async def send_cleric(self, interaction: discord.Interaction, c: Character):

async def send_insight(self, interaction: discord.Interaction, c: Character):
user = interaction.user
log.debug("Sending Insight")
if c.heroclass["ability"]:
await self.send_in_use(interaction)
return
Expand All @@ -347,7 +346,6 @@ async def send_insight(self, interaction: discord.Interaction, c: Character):
else:
good = False
msg = _("Another hero has already done a better job than you.")
log.debug("Sending bad")
await smart_embed(
message=msg,
interaction=interaction,
Expand Down Expand Up @@ -485,8 +483,6 @@ async def send_insight(self, interaction: discord.Interaction, c: Character):
cog=self.view.cog,
interaction=interaction,
)
else:
log.debug("Psychic is bad")
else:
await self.send_cooldown(interaction, c, cooldown_time)

Expand Down

0 comments on commit 660d66a

Please sign in to comment.