diff options
| author | Lulonaut <67191924+Lulonaut@users.noreply.github.com> | 2022-05-11 21:30:33 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-11 21:30:33 +0200 |
| commit | 566c98084418ea20c448f5c08d520d07957038e8 (patch) | |
| tree | 5d6752ec5e19ebb207fc0a7e034f5b61c83524a4 /src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java | |
| parent | beddbf61cbff2e6db988b7b5c66b003241ba9cde (diff) | |
| download | notenoughupdates-566c98084418ea20c448f5c08d520d07957038e8.tar.gz notenoughupdates-566c98084418ea20c448f5c08d520d07957038e8.tar.bz2 notenoughupdates-566c98084418ea20c448f5c08d520d07957038e8.zip | |
Save current equipment in config (#131)
* save current equipment in config
* actually make it work again and reset when switching profiles
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 | 3 |
1 files changed, 3 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 2e31fbf3..5ed990a4 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java @@ -1,6 +1,7 @@ package io.github.moulberry.notenoughupdates.options; import com.google.common.collect.Lists; +import com.google.gson.JsonObject; import com.google.gson.annotations.Expose; import io.github.moulberry.notenoughupdates.NotEnoughUpdates; import io.github.moulberry.notenoughupdates.core.GuiScreenElementWrapper; @@ -517,6 +518,8 @@ public class NEUConfig extends Config { public HashMap<String, Boolean> unlockedWarpScrolls = new HashMap<>(); @Expose public long dailyHeavyPearlCompleted = 0L; + @Expose + public HashMap<Integer, JsonObject> savedEquipment = new HashMap<>(); } public HiddenLocationSpecific getLocationSpecific() { |
