*Fixed rigged planar dice rolls.

This commit is contained in:
Hellfish
2013-05-12 09:33:18 +00:00
parent bf8ea5ce4e
commit 0930ed6c15

View File

@@ -686,7 +686,14 @@ public final class GuiDisplayUtil {
PlanarDice.roll(p, res); PlanarDice.roll(p, res);
p.getGame().getStack().chooseOrderOfSimultaneousStackEntryAll(); FThreads.invokeInNewThread(new Runnable() {
@Override
public void run() {
p.getGame().getStack().chooseOrderOfSimultaneousStackEntryAll();
}
});
} }
private static GameState getGame() { private static GameState getGame() {