From fed5bf7f0ce202f2f92877ba61b9f415c10ceed6 Mon Sep 17 00:00:00 2001 From: Valerio Maggio Date: Wed, 17 May 2023 17:27:13 +0100 Subject: [PATCH] Added new Pauper format getter in GameFormat --- forge-game/src/main/java/forge/game/GameFormat.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/forge-game/src/main/java/forge/game/GameFormat.java b/forge-game/src/main/java/forge/game/GameFormat.java index 0234573e6c9..81a3952440e 100644 --- a/forge-game/src/main/java/forge/game/GameFormat.java +++ b/forge-game/src/main/java/forge/game/GameFormat.java @@ -610,6 +610,8 @@ public class GameFormat implements Comparable { 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); }