diff options
author | syeyoung <cyoung06@naver.com> | 2023-02-27 15:42:33 +0900 |
---|---|---|
committer | syeyoung <cyoung06@naver.com> | 2023-02-27 15:42:33 +0900 |
commit | ba3fd28b0d6853c8060485c629d2d934228e0859 (patch) | |
tree | a6145c9429915b2c208157ccd735f487baaa19fe | |
parent | eaa2b8412f96b7492982810122c51c39659d011a (diff) | |
download | Skyblock-Dungeons-Guide-ba3fd28b0d6853c8060485c629d2d934228e0859.tar.gz Skyblock-Dungeons-Guide-ba3fd28b0d6853c8060485c629d2d934228e0859.tar.bz2 Skyblock-Dungeons-Guide-ba3fd28b0d6853c8060485c629d2d934228e0859.zip |
- Dump Feature Category
Signed-off-by: syeyoung <cyoung06@naver.com>
-rw-r--r-- | mod/src/main/java/kr/syeyoung/dungeonsguide/mod/commands/CommandDgDebug.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mod/src/main/java/kr/syeyoung/dungeonsguide/mod/commands/CommandDgDebug.java b/mod/src/main/java/kr/syeyoung/dungeonsguide/mod/commands/CommandDgDebug.java index 2b15c5ff..8c0b2459 100644 --- a/mod/src/main/java/kr/syeyoung/dungeonsguide/mod/commands/CommandDgDebug.java +++ b/mod/src/main/java/kr/syeyoung/dungeonsguide/mod/commands/CommandDgDebug.java @@ -558,6 +558,10 @@ public class CommandDgDebug extends CommandBase { } private void dumpSettingsCommand() { + for (AbstractFeature abstractFeature : FeatureRegistry.getFeatureList()) { + System.out.println(abstractFeature.getCategory()+"\t"+abstractFeature.getName()); + } + // NestedCategory nestedCategory = new NestedCategory("ROOT"); // for (AbstractFeature abstractFeature : FeatureRegistry.getFeatureList()) { // String category = abstractFeature.getCategory(); |