We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b484269 commit 3363831Copy full SHA for 3363831
1 file changed
src/main/java/zadudoder/spmhelper/config/SPmHelperConfig.java
@@ -3,6 +3,7 @@
3
import me.shedaniel.autoconfig.AutoConfig;
4
import me.shedaniel.autoconfig.ConfigData;
5
import me.shedaniel.autoconfig.annotation.Config;
6
+import me.shedaniel.autoconfig.annotation.ConfigEntry;
7
import zadudoder.spmhelper.utils.types.Card;
8
9
import java.util.HashMap;
@@ -11,7 +12,11 @@
11
12
@Config(name = "spmhelper")
13
public class SPmHelperConfig implements ConfigData {
14
String API_TOKEN = null;
15
+
16
+ @ConfigEntry.Gui.Excluded
17
Map<String, Card> cards = new HashMap<>();
18
19
20
String mainCardName;
21
22
public static SPmHelperConfig get() {
0 commit comments