mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
* Kindred Summons - Fixed that no creatures were put onto the battlefield.
This commit is contained in:
parent
7d1af66162
commit
85b13b88c8
2 changed files with 4 additions and 4 deletions
|
|
@ -67,7 +67,7 @@ public class ChooseCreatureTypeEffect extends OneShotEffect {
|
|||
if (!game.isSimulation()) {
|
||||
game.informPlayers(mageObject.getName() + ": " + controller.getLogName() + " has chosen " + typeChoice.getChoice());
|
||||
}
|
||||
game.getState().setValue(mageObject.getId() + "_type", SubType.byDescription(typeChoice.getChoice()));
|
||||
game.getState().setValue(source.getSourceId() + "_type", SubType.byDescription(typeChoice.getChoice()));
|
||||
if (mageObject instanceof Permanent) {
|
||||
((Permanent) mageObject).addInfo("chosen type", CardUtil.addToolTipMarkTags("Chosen type: " + typeChoice.getChoice()), game);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue