diff options
| author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-08 00:06:16 +0100 |
|---|---|---|
| committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-08 00:06:16 +0100 |
| commit | f1930397ccfb9d953bbd93ace46508c487dd6579 (patch) | |
| tree | c7fd86a725443d7ea5ed898414ff391a1d66d8fa /src/main/java/at/hannibal2/skyhanni/config/features | |
| parent | 973c70eb98bfb811ebce565b71d388eb948aa327 (diff) | |
| download | skyhanni-f1930397ccfb9d953bbd93ace46508c487dd6579.tar.gz skyhanni-f1930397ccfb9d953bbd93ace46508c487dd6579.tar.bz2 skyhanni-f1930397ccfb9d953bbd93ace46508c487dd6579.zip | |
Added option to change the Blaze Slayer Dagger GUI positons.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/SlayerConfig.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/SlayerConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/SlayerConfig.java index 6ca5ec984..1c0003eab 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/SlayerConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/SlayerConfig.java @@ -121,6 +121,12 @@ public class SlayerConfig { @ConfigEditorBoolean @FeatureToggle public boolean hideDaggerWarning = false; + + @Expose + public Position positionTop = new Position(-475, 173, 4.4f, true); + + @Expose + public Position positionBottom = new Position(-475, 230, 3.2f, true); } |
