- A more correct fix for color identity update. This fix also fixes Morph/Manifest cards leaking color to the "current card colors" display in card detail panel.

This commit is contained in:
Agetian
2015-09-26 14:42:26 +00:00
parent a3eebd0e77
commit e9552ec17f

View File

@@ -293,8 +293,6 @@ public class Card extends GameEntity implements Comparable<Card> {
getGame().getTriggerHandler().runTrigger(TriggerType.Transformed, runParams, false);
}
currentState.getView().updateColors(this);
return true;
}
@@ -350,6 +348,7 @@ public class Card extends GameEntity implements Comparable<Card> {
if (updateView) {
view.updateState(this);
currentState.getView().updateColors(this);
final Game game = getGame();
if (game != null) {