diff options
-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(); |