* Master of the Wild Hunt - Fixed that the damage that the controller of the targeted creature could assign was handled targeted and so hexproof could wrongly block that assignment.

This commit is contained in:
LevelX2 2015-08-30 21:30:58 +02:00
parent a09eb2f94e
commit 5f7f04be65
2 changed files with 39 additions and 37 deletions

View file

@ -1080,6 +1080,7 @@ public class HumanPlayer extends PlayerImpl {
int remainingDamage = damage;
while (remainingDamage > 0 && canRespond()) {
Target target = new TargetCreatureOrPlayer();
target.setNotTarget(true);
if (singleTargetName != null) {
target.setTargetName(singleTargetName);
}