mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
swap green and white in color order choices. (#6630)
This commit is contained in:
parent
eaa5fed464
commit
717b3da6f9
1 changed files with 2 additions and 2 deletions
|
@ -16,11 +16,11 @@ public class ChoiceColor extends ChoiceImpl {
|
|||
|
||||
public static List<String> getBaseColors() {
|
||||
List<String> arr = new ArrayList<>();
|
||||
arr.add("Green");
|
||||
arr.add("White");
|
||||
arr.add("Blue");
|
||||
arr.add("Black");
|
||||
arr.add("Red");
|
||||
arr.add("White");
|
||||
arr.add("Green");
|
||||
return arr;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue