From 7aea6aa7b3774a3797f68a503eb42e99e88c2e56 Mon Sep 17 00:00:00 2001 From: Clicks <58398364+CuzImClicks@users.noreply.github.com> Date: Wed, 11 Sep 2024 13:14:08 +0200 Subject: Feature: Transfer Cooldown Prevention (#1751) Co-authored-by: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> Co-authored-by: Cal Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com> --- .../skyhanni/config/features/commands/CommandsConfig.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/commands/CommandsConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/commands/CommandsConfig.java index 1747baee6..854ed39cc 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/commands/CommandsConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/commands/CommandsConfig.java @@ -47,4 +47,16 @@ public class CommandsConfig { @ConfigEditorBoolean @FeatureToggle public boolean viewRecipeLowerCase = true; + + @Expose + @ConfigOption(name = "Fix Transfer Cooldown", desc = "Waits for the transfer cooldown to complete if you try to warp.") + @ConfigEditorBoolean + @FeatureToggle + public boolean transferCooldown = false; + + @Expose + @ConfigOption(name = "Transfer Cooldown Ended Message", desc = "Sends a message in chat when the transfer cooldown ends.") + @ConfigEditorBoolean + @FeatureToggle + public boolean transferCooldownMessage = false; } -- cgit