- Routing Flashback button through the InputProxy to attempt fix for Oracle of Mul Daya/trigger issue

This commit is contained in:
Sol
2014-04-28 00:51:24 +00:00
parent 2592002bcf
commit 32fc73802d

View File

@@ -104,6 +104,10 @@ public class CField implements ICDoc {
if (player.getLobbyPlayer() != CField.this.viewer) { if (player.getLobbyPlayer() != CField.this.viewer) {
return; return;
} }
CPrompt.SINGLETON_INSTANCE.getInputControl().selectCard(c, null);
// Temporarily commenting out the below to route, Flashback cards through the InputProxy
/*
final Game game = player.getGame(); final Game game = player.getGame();
// TODO: "can play" check needed! // TODO: "can play" check needed!
@@ -116,6 +120,7 @@ public class CField implements ICDoc {
game.getStack().addAllTirggeredAbilitiesToStack(); game.getStack().addAllTirggeredAbilitiesToStack();
}}); }});
} }
*/
} }
}; };