mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
Prevent stack order being reversed
This commit is contained in:
@@ -248,8 +248,7 @@ public abstract class LocalGameView implements IGameView {
|
||||
*/
|
||||
@Override
|
||||
public StackItemView peekStack() {
|
||||
final SpellAbilityStackInstance top =
|
||||
Iterables.getFirst(game.getStack(), null);
|
||||
final SpellAbilityStackInstance top = game.getStack().peek();
|
||||
if (top == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user