Skip to content

Commit

Permalink
code cleanup and disabling item pickup log per default
Browse files Browse the repository at this point in the history
  • Loading branch information
hannibal002 committed Oct 20, 2024
1 parent 7e2db06 commit 8ce3e9d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class ItemPickupLogConfig {
@ConfigOption(name = "Item Pickup Log", desc = "Show a log of what items you pick up/drop and their amounts.")
@ConfigEditorBoolean
@FeatureToggle
public boolean enabled = true;
public boolean enabled = false;

@Expose
@ConfigOption(name = "Compact Lines", desc = "Combine the §a+ §7and §c- §7lines into a single line.")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
public class DraconicSacrificeTrackerConfig {

@Expose
@ConfigOption(name = "Enabled", desc = "Track items/profit while using the Draconic Altar in the End.")
@ConfigOption(name = "Enabled", desc = "Tracks items and profit while using the Draconic Altar in the End.")
@ConfigEditorBoolean
@FeatureToggle
public boolean enabled = true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ object StashCompact {
}

ChatUtils.clickableChat(
"§eYou have §6$lastMaterialCount §e$typeNameFormat in stash§6${typeStringExtra} " +
"§eYou have §6$lastMaterialCount §e$typeNameFormat in stash§6$typeStringExtra " +
"§eClick to ${if (config.useViewStash) "§6view" else "§6pickup"} §eyour stash!",
onClick = {
if (config.useViewStash) HypixelCommands.viewStash(lastType)
Expand Down

0 comments on commit 8ce3e9d

Please sign in to comment.