diff --git a/fireplace/cards/boomsday/neutral_rare.py b/fireplace/cards/boomsday/neutral_rare.py index c1b847bae..c408ed29d 100644 --- a/fireplace/cards/boomsday/neutral_rare.py +++ b/fireplace/cards/boomsday/neutral_rare.py @@ -26,11 +26,11 @@ class BOT_107: """Missile Launcher""" # [x]Magnetic 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: