summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-11-07 21:51:46 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-11-07 21:51:46 +0100
commitbd1c148c5cfeee0d2e5d7e3ed04498a496a435b6 (patch)
tree1d1404f71632d5f758a8ce1f69c3cfb16125b053 /src/main/java/at/hannibal2/skyhanni/config
parentbc27a67c4495c8e4a37f559e1224ebfc0d649e80 (diff)
downloadskyhanni-bd1c148c5cfeee0d2e5d7e3ed04498a496a435b6.tar.gz
skyhanni-bd1c148c5cfeee0d2e5d7e3ed04498a496a435b6.tar.bz2
skyhanni-bd1c148c5cfeee0d2e5d7e3ed04498a496a435b6.zip
renamed SlayerItemProfitTracker to SlayerProfitTracker
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/Storage.java4
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/Storage.java b/src/main/java/at/hannibal2/skyhanni/config/Storage.java
index edab10936..cf8bd827a 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/Storage.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/Storage.java
@@ -16,7 +16,7 @@ import at.hannibal2.skyhanni.features.mining.powdertracker.PowderTracker;
import at.hannibal2.skyhanni.features.misc.trevor.TrevorTracker;
import at.hannibal2.skyhanni.features.misc.visualwords.VisualWord;
import at.hannibal2.skyhanni.features.rift.area.westvillage.KloonTerminal;
-import at.hannibal2.skyhanni.features.slayer.SlayerItemProfitTracker;
+import at.hannibal2.skyhanni.features.slayer.SlayerProfitTracker;
import at.hannibal2.skyhanni.utils.LorenzVec;
import at.hannibal2.skyhanni.utils.NEUInternalName;
import com.google.gson.annotations.Expose;
@@ -345,7 +345,7 @@ public class Storage {
}
@Expose
- public Map<String, SlayerItemProfitTracker.Data> slayerProfitData = new HashMap<>();
+ public Map<String, SlayerProfitTracker.Data> slayerProfitData = new HashMap<>();
@Expose
public Map<String, SlayerRngMeterStorage> slayerRngMeter = new HashMap<>();
diff --git a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
index c612a9742..47d267bbc 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
+++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
@@ -34,7 +34,7 @@ import at.hannibal2.skyhanni.features.misc.MarkedPlayerManager
import at.hannibal2.skyhanni.features.misc.discordrpc.DiscordRPCManager
import at.hannibal2.skyhanni.features.misc.massconfiguration.DefaultConfigFeatures
import at.hannibal2.skyhanni.features.misc.visualwords.VisualWordGui
-import at.hannibal2.skyhanni.features.slayer.SlayerItemProfitTracker
+import at.hannibal2.skyhanni.features.slayer.SlayerProfitTracker
import at.hannibal2.skyhanni.test.PacketTest
import at.hannibal2.skyhanni.test.SkyHanniConfigSearchResetCommand
import at.hannibal2.skyhanni.test.SkyHanniDebugsAndTests
@@ -151,7 +151,7 @@ object Commands {
registerCommand(
"shclearslayerprofits",
"Clearing the total slayer profit for the current slayer type"
- ) { SlayerItemProfitTracker.clearProfitCommand(it) }
+ ) { SlayerProfitTracker.clearProfitCommand(it) }
registerCommand(
"shimportghostcounterdata",
"Manually importing the ghost counter data from GhostCounterV3"