diff options
| author | jani270 <69345714+jani270@users.noreply.github.com> | 2021-08-11 13:11:49 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-11 13:11:49 +0200 |
| commit | 55bb27aa9bd2a288c28a17502b421f4cf647570d (patch) | |
| tree | 05fc6a8fb187e1388e5a4a1131b2359392f89baf /src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/SlotLocking.java | |
| parent | 9cceb9cbf0e8da94022ddaf7d00b3565a1c83557 (diff) | |
| parent | b9969795b98665509af5ba05fc60c30e7459a52a (diff) | |
| download | notenoughupdates-55bb27aa9bd2a288c28a17502b421f4cf647570d.tar.gz notenoughupdates-55bb27aa9bd2a288c28a17502b421f4cf647570d.tar.bz2 notenoughupdates-55bb27aa9bd2a288c28a17502b421f4cf647570d.zip | |
Merge branch 'DoKM:master' into yep
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/SlotLocking.java')
| -rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/SlotLocking.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/SlotLocking.java b/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/SlotLocking.java index 256cf03f..cd128ebe 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/SlotLocking.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/SlotLocking.java @@ -79,6 +79,14 @@ public class SlotLocking { private boolean lockKeyHeld = false; private Slot pairingSlot = null; + private Slot realSlot = null; + + public void setRealSlot(Slot slot){ + realSlot = slot; + } + + public Slot getRealSlot(){ return realSlot;} + public void loadConfig(File file) { try(BufferedReader reader = new BufferedReader(new InputStreamReader(new FileInputStream(file), StandardCharsets.UTF_8))) { config = GSON.fromJson(reader, SlotLockingConfig.class); |
