mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
[KHM] fixed The Omenkeel not exiling cards
This commit is contained in:
parent
88b8efefe5
commit
633a192e20
1 changed files with 1 additions and 1 deletions
|
@ -243,7 +243,7 @@ class TheOmenkeelEffect extends OneShotEffect {
|
|||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
Player player = game.getPlayer(source.getFirstTarget());
|
||||
Player player = game.getPlayer(targetPointer.getFirst(game, source));
|
||||
int damage = (Integer) getValue("damage");
|
||||
if (player == null || damage < 1) {
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue