aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-04-15 18:49:31 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-04-15 18:49:31 +0200
commit50de0411385ff51f2ff753630054aa2ea3d4d7ff (patch)
tree284285e0357d9ef4142235da290824ab81690c3f /src/main/java/at/hannibal2/skyhanni/config
parentc667d204866a442d17de9e61f123d3a72331ccc4 (diff)
downloadskyhanni-50de0411385ff51f2ff753630054aa2ea3d4d7ff.tar.gz
skyhanni-50de0411385ff51f2ff753630054aa2ea3d4d7ff.tar.bz2
skyhanni-50de0411385ff51f2ff753630054aa2ea3d4d7ff.zip
removed bazaar update timer
removed skyhanni bazaar logic and now fully using neu bazaar price logic
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Bazaar.java8
2 files changed, 0 insertions, 10 deletions
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 f09836a5b..5a0c8379c 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
+++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
@@ -5,7 +5,6 @@ import at.hannibal2.skyhanni.config.ConfigGuiManager
import at.hannibal2.skyhanni.config.commands.SimpleCommand.ProcessCommandRunnable
import at.hannibal2.skyhanni.data.ApiDataLoader
import at.hannibal2.skyhanni.data.GuiEditManager
-import at.hannibal2.skyhanni.features.bazaar.BazaarDataGrabber
import at.hannibal2.skyhanni.features.bingo.BingoCardDisplay
import at.hannibal2.skyhanni.features.bingo.BingoNextStepHelper
import at.hannibal2.skyhanni.features.event.diana.BurrowWarpHelper
@@ -54,7 +53,6 @@ object Commands {
registerCommand("shprintbingohelper") { BingoNextStepHelper.command() }
registerCommand("shsetapikey") { ApiDataLoader.command(it) }
registerCommand("shtestgardenvisitors") { LorenzTest.testGardenVisitors() }
- registerCommand("shresetitemnames") { BazaarDataGrabber.resetItemNames() }
registerCommand("shtogglehypixelapierrors") { APIUtil.toggleApiErrorMessages() }
registerCommand("shcropspeedmeter") { CropSpeedMeter.toggle() }
}
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Bazaar.java b/src/main/java/at/hannibal2/skyhanni/config/features/Bazaar.java
index e988c7b67..f26b69997 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Bazaar.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Bazaar.java
@@ -24,12 +24,4 @@ public class Bazaar {
@ConfigOption(name = "Cancelled Buy Order Clipboard", desc = "Saves missing items from cancelled buy orders to clipboard for faster re-entry.")
@ConfigEditorBoolean
public boolean cancelledBuyOrderClipboard = false;
-
- @Expose
- @ConfigOption(name = "Update Timer", desc = "A countdown timer for the next Bazaar data update.")
- @ConfigEditorBoolean
- public boolean updateTimer = false;
-
- @Expose
- public Position updateTimerPos = new Position(10, 10, false, true);
}