aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-02-11 08:15:31 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-02-11 08:15:31 +0100
commita389e0666c811f5a3bf4f75e61b314e7cea2c109 (patch)
tree94552228315d3c65592ab813be44afbf323d1ccf /src/main/java/at/hannibal2/skyhanni/config/features
parentcdd5817c96ebb284c8bf9b2178d70aae0ba9847f (diff)
downloadskyhanni-a389e0666c811f5a3bf4f75e61b314e7cea2c109.tar.gz
skyhanni-a389e0666c811f5a3bf4f75e61b314e7cea2c109.tar.bz2
skyhanni-a389e0666c811f5a3bf4f75e61b314e7cea2c109.zip
Added more particle hiders: far particles, near redstone particles, smoke particles.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Misc.java36
1 files changed, 31 insertions, 5 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 467a6c1b6..994b5c9ac 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java
@@ -167,24 +167,50 @@ public class Misc {
public Position tpsDisplayPosition = new Position(10, 10, false, true);
@Expose
- @ConfigOption(name = "Exp Bottles", desc = "Hides all the experience bottles lying on the ground.")
- @ConfigEditorBoolean
- public boolean hideExpBottles = false;
+ @ConfigOption(name = "Particle Hider", desc = "")
+ @ConfigEditorAccordion(id = 9)
+ public boolean particleHider = false;
@Expose
@ConfigOption(name = "Blaze Particles", desc = "Hide blaze particles")
@ConfigEditorBoolean
+ @ConfigAccordionId(id = 9)
public boolean hideBlazeParticles = false;
@Expose
@ConfigOption(name = "Fireball Particles", desc = "Hide fireball particles")
@ConfigEditorBoolean
- public boolean hideFireballParticles = false;
+ @ConfigAccordionId(id = 9)
+ public boolean hideFireballParticles = true;
@Expose
@ConfigOption(name = "Fire Particles", desc = "Hide particles from the fire block.")
@ConfigEditorBoolean
- public boolean hideFireBlockParticles = false;
+ @ConfigAccordionId(id = 9)
+ public boolean hideFireBlockParticles = true;
+
+ @Expose
+ @ConfigOption(name = "Smoke Particle", desc = "Hide smoke particles.")
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 9)
+ public boolean hideSmokeParticles = false;
+
+ @Expose
+ @ConfigOption(name = "Far Particles", desc = "Hide particles that are more than 40 blocks away.")
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 9)
+ public boolean hideFarParticles = true;
+
+ @Expose
+ @ConfigOption(name = "Close Redstone Particles", desc = "Hide redstone particles around the player. (They spawn when having some potion effects active)")
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 9)
+ public boolean hideCloseRedstoneparticles = true;
+
+ @Expose
+ @ConfigOption(name = "Exp Bottles", desc = "Hides all the experience bottles lying on the ground.")
+ @ConfigEditorBoolean
+ public boolean hideExpBottles = false;
@Expose
@ConfigOption(name = "Collection Counter Position", desc = "Tracking the number of items you collect. §cDoes not work with sacks.")