From ba3fd28b0d6853c8060485c629d2d934228e0859 Mon Sep 17 00:00:00 2001 From: syeyoung Date: Mon, 27 Feb 2023 15:42:33 +0900 Subject: - Dump Feature Category Signed-off-by: syeyoung --- .../java/kr/syeyoung/dungeonsguide/mod/commands/CommandDgDebug.java | 4 ++++ 1 file changed, 4 insertions(+) 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(); -- cgit