diff options
| author | syeyoung <cyong06@naver.com> | 2021-07-25 22:27:22 +0900 |
|---|---|---|
| committer | syeyoung <cyong06@naver.com> | 2021-07-25 22:28:49 +0900 |
| commit | 932399472cb653f5a8fdc1095fa941656a729650 (patch) | |
| tree | 6049fdf96de7b2967c56d1d6ea62a6c473845c0a /src/main/java/kr/syeyoung/dungeonsguide/dungeon/doorfinder | |
| parent | a6b8e47c879ce5a1c69d0552cdb26a3b3e95e4b6 (diff) | |
| download | Skyblock-Dungeons-Guide-932399472cb653f5a8fdc1095fa941656a729650.tar.gz Skyblock-Dungeons-Guide-932399472cb653f5a8fdc1095fa941656a729650.tar.bz2 Skyblock-Dungeons-Guide-932399472cb653f5a8fdc1095fa941656a729650.zip | |
Creating Fake Dungeons.
Diffstat (limited to 'src/main/java/kr/syeyoung/dungeonsguide/dungeon/doorfinder')
| -rwxr-xr-x | src/main/java/kr/syeyoung/dungeonsguide/dungeon/doorfinder/DungeonSpecificDataProviderRegistry.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/kr/syeyoung/dungeonsguide/dungeon/doorfinder/DungeonSpecificDataProviderRegistry.java b/src/main/java/kr/syeyoung/dungeonsguide/dungeon/doorfinder/DungeonSpecificDataProviderRegistry.java index a92d7a03..6ee6f9ee 100755 --- a/src/main/java/kr/syeyoung/dungeonsguide/dungeon/doorfinder/DungeonSpecificDataProviderRegistry.java +++ b/src/main/java/kr/syeyoung/dungeonsguide/dungeon/doorfinder/DungeonSpecificDataProviderRegistry.java @@ -23,7 +23,7 @@ import java.util.Map; import java.util.regex.Pattern; public class DungeonSpecificDataProviderRegistry { - private static final Map<Pattern, DungeonSpecificDataProvider> doorFinders = new HashMap<Pattern, DungeonSpecificDataProvider>(); + public static final Map<Pattern, DungeonSpecificDataProvider> doorFinders = new HashMap<Pattern, DungeonSpecificDataProvider>(); static { doorFinders.put(Pattern.compile("The Catacombs (?:F[0-9]|E0)"), new CatacombDataProvider()); |
