mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Added RNA images support for scryfall, fixed MED set for scryfall, fixed bloated logs for machines without sound.
This commit is contained in:
parent
5d1289a66e
commit
fbca0f4fef
2 changed files with 3 additions and 1 deletions
|
@ -57,7 +57,7 @@ public class AudioManager {
|
||||||
try {
|
try {
|
||||||
linePool = new LinePool();
|
linePool = new LinePool();
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
log.warn("Failed to initialize AudioManager. No sounds will be played.", e);
|
log.warn("Failed to initialize AudioManager (can't find compatible sound device). No sounds will be played.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -236,6 +236,7 @@ public enum ScryfallImageSource implements CardImageSource {
|
||||||
supportedSets.add("GNT");
|
supportedSets.add("GNT");
|
||||||
supportedSets.add("UMA");
|
supportedSets.add("UMA");
|
||||||
supportedSets.add("PUMA");
|
supportedSets.add("PUMA");
|
||||||
|
supportedSets.add("RNA");
|
||||||
//
|
//
|
||||||
supportedSets.add("EURO");
|
supportedSets.add("EURO");
|
||||||
supportedSets.add("GPX");
|
supportedSets.add("GPX");
|
||||||
|
@ -385,6 +386,7 @@ public enum ScryfallImageSource implements CardImageSource {
|
||||||
put("WMCQ", "pwcq");
|
put("WMCQ", "pwcq");
|
||||||
put("EURO", "pelp");
|
put("EURO", "pelp");
|
||||||
put("GPX", "pgpx");
|
put("GPX", "pgpx");
|
||||||
|
put("MED", "me1");
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue