Skip to content

Commit

Permalink
Fix bug (#510)
Browse files Browse the repository at this point in the history
  • Loading branch information
shinoi2 authored Jan 2, 2024
1 parent 78bcbcf commit 07b0758
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fireplace/cards/boomsday/neutral_rare.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ class BOT_107:
"""Missile Launcher"""
# [x]<b>Magnetic</b> At the end of your turn, deal 1 damage to all other characters.
magnetic = MAGNETIC("BOT_107e")
events = Hit(ALL_CHARACTERS - SELF, 1)
events = OWN_TURN_END.on(Hit(ALL_CHARACTERS - SELF, 1))


class BOT_107e:
events = Hit(ALL_CHARACTERS - OWNER, 1)
events = OWN_TURN_END.on(Hit(ALL_CHARACTERS - OWNER, 1))


class BOT_270:
Expand Down

0 comments on commit 07b0758

Please sign in to comment.