mirror of
https://github.com/magefree/mage.git
synced 2025-12-21 11:02:00 -08:00
Removed random order in grave: Fixed Issue#45: Card display order in graveyard random
This commit is contained in:
parent
3a35d4e163
commit
214dc7326d
1 changed files with 5 additions and 4 deletions
|
|
@ -28,16 +28,17 @@
|
||||||
|
|
||||||
package mage.view;
|
package mage.view;
|
||||||
|
|
||||||
import java.util.Collection;
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.UUID;
|
|
||||||
import mage.cards.Card;
|
import mage.cards.Card;
|
||||||
|
|
||||||
|
import java.util.Collection;
|
||||||
|
import java.util.LinkedHashMap;
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @author BetaSteward_at_googlemail.com
|
* @author BetaSteward_at_googlemail.com
|
||||||
*/
|
*/
|
||||||
public class SimpleCardsView extends HashMap<UUID, SimpleCardView> {
|
public class SimpleCardsView extends LinkedHashMap<UUID, SimpleCardView> {
|
||||||
|
|
||||||
public SimpleCardsView() {}
|
public SimpleCardsView() {}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue