forked from External/mage
changed collation to strings to allow non-int collector numbers
This commit is contained in:
parent
1239a0299b
commit
073ec1cdb9
6 changed files with 34 additions and 34 deletions
|
|
@ -3,9 +3,9 @@ package mage.collation;
|
|||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public abstract class CardRun extends Rotater<Integer> {
|
||||
public abstract class CardRun extends Rotater<String> {
|
||||
|
||||
public CardRun(boolean keepOrder, Integer... names) {
|
||||
super(keepOrder, names);
|
||||
public CardRun(boolean keepOrder, String... numbers) {
|
||||
super(keepOrder, numbers);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue