diff --git a/fireplace/cards/boomsday/shaman.py b/fireplace/cards/boomsday/shaman.py index ee4d73e77..ead626bc4 100644 --- a/fireplace/cards/boomsday/shaman.py +++ b/fireplace/cards/boomsday/shaman.py @@ -46,7 +46,7 @@ class BOT_543: class BOT_543e: - update = Refresh(FRIENDLY_HAND + SPELL, {GameTag.LIFESTEAL: True}) + update = Refresh(FRIENDLY + SPELL, {GameTag.LIFESTEAL: True}) ## diff --git a/tests/test_boomsday.py b/tests/test_boomsday.py index 7fab98190..eb1b5ee7f 100644 --- a/tests/test_boomsday.py +++ b/tests/test_boomsday.py @@ -110,3 +110,11 @@ def test_flarks_boom_zooka(): def test_zereks_cloning_gallery_when_empty(): game = prepare_empty_game() game.player1.give("BOT_567").play() + + +def test_omega_mind(): + game = prepare_game() + game.player1.give("BOT_543").play() + game.player1.hero.set_current_health(1) + game.player1.give(FIREBALL).play(target=game.player2.hero) + assert game.player1.hero.health == 1 + 6