* Fixed possible null pointer exception.

This commit is contained in:
LevelX2 2015-01-26 19:26:49 +01:00
parent 6fe58db97d
commit 5701c36446
2 changed files with 8 additions and 3 deletions

View file

@ -196,7 +196,12 @@ public class TargetPlayer extends TargetImpl {
public String getTargetedName(Game game) {
StringBuilder sb = new StringBuilder();
for (UUID targetId: getTargets()) {
sb.append(game.getPlayer(targetId).getName()).append(" ");
Player player = game.getPlayer(targetId);
if (player != null) {
sb.append(player.getName()).append(" ");
} else {
sb.append("[target missing]");
}
}
return sb.toString();
}