diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-02-13 20:43:38 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-02-13 20:43:38 +0100 |
commit | 848e9e6ca15b5e70dc0a282d7adb8c2f299be2c4 (patch) | |
tree | f9f1b78ebfc1e6f0cb897e65ac8e832d819732b1 /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | a35b093c39c9dce7697d1daacecab199a44c9f40 (diff) | |
download | skyhanni-848e9e6ca15b5e70dc0a282d7adb8c2f299be2c4.tar.gz skyhanni-848e9e6ca15b5e70dc0a282d7adb8c2f299be2c4.tar.bz2 skyhanni-848e9e6ca15b5e70dc0a282d7adb8c2f299be2c4.zip |
Added enderman teleportation, explosion and fire overlay hider.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Misc.java | 10 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Mobs.java | 5 |
2 files changed, 15 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java b/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java index 994b5c9ac..c84460492 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java @@ -228,6 +228,16 @@ public class Misc { public boolean hideScoreboardNumbers = false; @Expose + @ConfigOption(name = "Explosions Hider", desc = "Hide explosions.") + @ConfigEditorBoolean + public boolean hideExplosions = false; + + @Expose + @ConfigOption(name = "Fire Overlay Hider", desc = "Hide the fire overlay (Like in Skytils)") + @ConfigEditorBoolean + public boolean hideFireOverlay = false; + + @Expose @ConfigOption(name = "Config Button", desc = "Add a button to the pause menu to configure SkyHanni.") @ConfigEditorBoolean public boolean configButtonOnPause = true; diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Mobs.java b/src/main/java/at/hannibal2/skyhanni/config/features/Mobs.java index d135427e0..97d69532d 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Mobs.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Mobs.java @@ -66,4 +66,9 @@ public class Mobs { @ConfigEditorBoolean @ConfigAccordionId(id = 1) public boolean areaBossRespawnTimer = false; + + @Expose + @ConfigOption(name = "Enderman Teleportation Hider", desc = "Stops the Enderman Teleportation animation (Like in SBA)") + @ConfigEditorBoolean + public boolean endermanTeleportationHider = false; } |