Added new Pauper format getter in GameFormat

This commit is contained in:
Valerio Maggio
2023-05-17 17:27:13 +01:00
parent 7500a83fc3
commit fed5bf7f0c

View File

@@ -610,6 +610,8 @@ public class GameFormat implements Comparable<GameFormat> {
public GameFormat getPremodern() { return this.map.get("Premodern"); }
public GameFormat getPauper() { return this.map.get("Pauper"); }
public GameFormat getFormat(String format) {
return this.map.get(format);
}