mirror of
https://github.com/correl/mage.git
synced 2025-04-03 09:18:59 -09:00
Fixed NPE
This commit is contained in:
parent
83017e3c51
commit
4f5e43b630
1 changed files with 3 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Reference in a new issue