diff options
| author | DoKM <54663875+DoKM@users.noreply.github.com> | 2021-08-26 20:11:21 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-26 20:11:21 +0200 |
| commit | cca642952abea08e4cbd294c797c88f3d38564bc (patch) | |
| tree | d26c19db719b3a1520e57ffed326325e3033a26e /src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java | |
| parent | 25206150fc9ab860cdf6928acdc5869d96821c5a (diff) | |
| parent | d6d24db17354c116276a1dae86f4a65d590d206b (diff) | |
| download | notenoughupdates-cca642952abea08e4cbd294c797c88f3d38564bc.tar.gz notenoughupdates-cca642952abea08e4cbd294c797c88f3d38564bc.tar.bz2 notenoughupdates-cca642952abea08e4cbd294c797c88f3d38564bc.zip | |
Merge pull request #28 from DeDiamondPro/master
Icons in dwarven overlay, fix + save max commision number and add command block in sb profile viewer to open profile viewer
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java')
| -rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java b/src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java index 22d3f6ff..98816714 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java @@ -23,6 +23,7 @@ import org.lwjgl.util.vector.Vector2f; import java.util.ArrayList; import java.util.HashMap; import java.util.List; +import java.util.Map; public class NEUConfig extends Config { @@ -285,6 +286,7 @@ public class NEUConfig extends Config { @Expose public ArrayList<String> enchantColours = createDefaultEnchantColours(); @Expose public String repoURL = "https://github.com/Moulberry/NotEnoughUpdates-REPO/archive/master.zip"; @Expose public String repoCommitsURL = "https://api.github.com/repos/Moulberry/NotEnoughUpdates-REPO/commits/master"; + @Expose public Map<String, Integer> commissionMaxes = new HashMap<>(); @Expose public boolean firstTimeSearchFocus = true; |
