aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal002@users.noreply.github.com>2024-04-15 18:54:33 +0200
committerGitHub <noreply@github.com>2024-04-15 18:54:33 +0200
commit79432868dab02fce68bcd513e01c49bd07271eba (patch)
tree6a6ddb1b3d4a83fb700c2cad35cc80074ffa871e /src/main/java/at/hannibal2/skyhanni/config
parentc78914d5e8bfca12eef8f6c9ff976aed26269345 (diff)
downloadskyhanni-79432868dab02fce68bcd513e01c49bd07271eba.tar.gz
skyhanni-79432868dab02fce68bcd513e01c49bd07271eba.tar.bz2
skyhanni-79432868dab02fce68bcd513e01c49bd07271eba.zip
New Feature: Profit Per Excavation (#1439)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/mining/FossilExcavatorConfig.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/mining/FossilExcavatorConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/mining/FossilExcavatorConfig.java
index f1b70c6b3..43f863e94 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/mining/FossilExcavatorConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/mining/FossilExcavatorConfig.java
@@ -1,7 +1,9 @@
package at.hannibal2.skyhanni.config.features.mining;
+import at.hannibal2.skyhanni.config.FeatureToggle;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.Accordion;
+import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
public class FossilExcavatorConfig {
@@ -16,4 +18,13 @@ public class FossilExcavatorConfig {
@Accordion
public ExcavatorProfitTrackerConfig profitTracker = new ExcavatorProfitTrackerConfig();
+ @Expose
+ @ConfigOption(
+ name = "Profit Per",
+ desc = "Show profit/loss in chat after each excavation. Also include breakdown information on hover."
+ )
+ @ConfigEditorBoolean
+ @FeatureToggle
+ public boolean profitPerExcavation = false;
+
}