diff options
author | Clicks <58398364+CuzImClicks@users.noreply.github.com> | 2024-09-11 13:14:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-11 13:14:08 +0200 |
commit | 7aea6aa7b3774a3797f68a503eb42e99e88c2e56 (patch) | |
tree | d990a9f0bf7b4e7f11c231a01504b325db01f5ba /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | c1f6c7242ae4f14556cfddbd2794694a5416b64f (diff) | |
download | skyhanni-7aea6aa7b3774a3797f68a503eb42e99e88c2e56.tar.gz skyhanni-7aea6aa7b3774a3797f68a503eb42e99e88c2e56.tar.bz2 skyhanni-7aea6aa7b3774a3797f68a503eb42e99e88c2e56.zip |
Feature: Transfer Cooldown Prevention (#1751)
Co-authored-by: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com>
Co-authored-by: Cal <cwolfson58@gmail.com>
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/commands/CommandsConfig.java | 12 |
1 files changed, 12 insertions, 0 deletions
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; } |