Skip to content

Commit

Permalink
Improvement: Wording in config, dev options (hannibal002#2397)
Browse files Browse the repository at this point in the history
Co-authored-by: hannibal2 <[email protected]>
  • Loading branch information
hannibal002 and hannibal002 authored Aug 26, 2024
1 parent a658f0f commit 03a1d0e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,8 @@ public String toString() {
public boolean hideVanillaNametag = false;

@Expose
@ConfigOption(name = "Time to Kill", desc = "Show the time it takes to kill the slayer boss.")
@ConfigOption(name = "Time to Kill", desc = "Show the time it takes to kill the slayer boss.\n" +
"§eRequires Damage Indicator to be active.")
@ConfigEditorBoolean
public boolean timeToKillSlayer = true;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package at.hannibal2.skyhanni.config.features.dev;

import at.hannibal2.skyhanni.config.FeatureToggle;
import at.hannibal2.skyhanni.config.core.config.Position;
import at.hannibal2.skyhanni.config.features.dev.minecraftconsole.MinecraftConsoleConfig;
import com.google.gson.annotations.Expose;
Expand Down Expand Up @@ -72,6 +73,7 @@ public class DevConfig {
"§eThose are the folks that coded the mod for you for free :)"
)
@ConfigEditorBoolean
@FeatureToggle
public boolean fancyContributors = true;

@Expose
Expand All @@ -80,13 +82,15 @@ public class DevConfig {
desc = "Makes SkyHanni contributors' nametags fancy too. "
)
@ConfigEditorBoolean
@FeatureToggle
public boolean contributorNametags = true;

@Expose
@ConfigOption(
name = "Flip Contributors",
desc = "Make SkyHanni contributors appear upside down in the world.")
@ConfigEditorBoolean
@FeatureToggle
public boolean flipContributors = true;

@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class BingoCardConfig {
public boolean enabled = true;

@Expose
@ConfigOption(name = "Quick Toggle", desc = "Quickly toggle the Bingo Card or the step helper by sneaking with SkyBlock Menu in hand.")
@ConfigOption(name = "Quick Toggle", desc = "Quickly show/hide the Bingo Card (when enabled above) or the step helper by sneaking with SkyBlock Menu in hand.")
@ConfigEditorBoolean
public boolean quickToggle = true;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ public class DianaConfig {
public boolean burrowsNearbyDetection = false;

@Expose
@ConfigOption(name = "Line To Next", desc = "Show a line to the closest burrow or guess location.")
@ConfigOption(name = "Line To Next", desc = "Show a line to the closest burrow or guess location.\n" +
"§eRequires Burrow particle detection.")
@ConfigEditorBoolean
public boolean lineToNext = true;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ public class TotemOfCorruptionConfig {
public int distanceThreshold = 16;

@Expose
@ConfigOption(name = "Hide Particles", desc = "Hide the particles of the Totem of Corruption.")
@ConfigOption(name = "Hide Particles", desc = "Hide the particles of the Totem of Corruption.\n" +
"§eRequires the Overlay to be active.")
@ConfigEditorBoolean
public boolean hideParticles = true;

Expand Down

0 comments on commit 03a1d0e

Please sign in to comment.