mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
fixed Tinybones, Trinket Thief not causing opponents to lose life (#6677)
This commit is contained in:
parent
1224f0621f
commit
b9e93a5da2
1 changed files with 1 additions and 1 deletions
|
@ -116,7 +116,7 @@ class TinybonesTrinketThiefEffect extends OneShotEffect {
|
|||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
for (UUID playerId : game.getOpponents(source.getControllerId())) {
|
||||
Player player = game.getPlayer(source.getControllerId());
|
||||
Player player = game.getPlayer(playerId);
|
||||
if (player != null && player.getHand().isEmpty()) {
|
||||
player.loseLife(10, game, false);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue