Skip to content

Commit

Permalink
fix bug [BOT_543] Omega Mind
Browse files Browse the repository at this point in the history
  • Loading branch information
shinoi2 committed Mar 12, 2024
1 parent ff7ddcc commit ae652cd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion fireplace/cards/boomsday/shaman.py
Original file line number Diff line number Diff line change
Expand Up @@ -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})


##
Expand Down
8 changes: 8 additions & 0 deletions tests/test_boomsday.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit ae652cd

Please sign in to comment.