From 07b0758bf50c9ebe9b2af3b75bfe5d84b0285d17 Mon Sep 17 00:00:00 2001 From: shinoi2 Date: Tue, 2 Jan 2024 17:12:19 +0800 Subject: [PATCH] Fix bug (#510) --- fireplace/cards/boomsday/neutral_rare.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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: