Improve Dauthi Voidwalker log message clarity

This commit is contained in:
PurpleCrowbar 2025-07-15 02:55:20 +01:00
parent 476680f5d6
commit 0ea71a743a

View file

@ -147,7 +147,7 @@ class DauthiVoidwalkerPlayEffect extends OneShotEffect {
game.addEffect(new PlayFromNotOwnHandZoneTargetEffect(
Zone.EXILED, TargetController.YOU, Duration.EndOfTurn, true, false
).setTargetPointer(new FixedTarget(card, game)), source);
game.informPlayers(player.getLogName() + " chose " + card.getLogName());
game.informPlayers(game.getObject(source).getLogName() + ": " + player.getLogName() + " has chosen " + card.getLogName());
return true;
}
}