1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-03 09:18:59 -09:00

Fixed NPE

This commit is contained in:
Oleg Agafonov 2021-09-05 19:53:51 +04:00
parent 83017e3c51
commit 4f5e43b630

View file

@ -214,7 +214,9 @@ public abstract class TargetPermanentOrPlayerAmount extends TargetAmount {
sb.append(permanent.getLogName()).append(" (").append(getTargetAmount(targetId)).append(") ");
} else {
Player player = game.getPlayer(targetId);
sb.append(player.getLogName()).append(" (").append(getTargetAmount(targetId)).append(") ");
if (player != null) {
sb.append(player.getLogName()).append(" (").append(getTargetAmount(targetId)).append(") ");
}
}
}
return sb.toString().trim();