From 8c1c00f6e2db06a08be017f450b9b01559d22776 Mon Sep 17 00:00:00 2001 From: Motschen Date: Tue, 22 Feb 2022 12:49:09 +0100 Subject: [PATCH] Update Documentation --- .../java/eu/midnightdust/lib/config/MidnightConfigExample.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/eu/midnightdust/lib/config/MidnightConfigExample.java b/src/main/java/eu/midnightdust/lib/config/MidnightConfigExample.java index 91a581b..f91b210 100755 --- a/src/main/java/eu/midnightdust/lib/config/MidnightConfigExample.java +++ b/src/main/java/eu/midnightdust/lib/config/MidnightConfigExample.java @@ -18,7 +18,8 @@ public class MidnightConfigExample extends MidnightConfig { QUILT, FABRIC } @Entry(min=10,max=30) public static int hello = 15675965; // - The entered number has to be larger than 10 and smaller than 30 - + @Entry(width = 7, min = 7, isColor = true) public static String titleColor = "#ffffff"; // The isColor property adds a preview box for a hexadecimal color + @Entry public static List blurExclusions = Mod.defaultExclusions; // Array String Lists are also supported public static int imposter = 16777215; // - Entries without an @Entry or @Comment annotation are ignored