From 9b4c029bbe90a74845da7c0e3e732c7c03714536 Mon Sep 17 00:00:00 2001 From: HiZe_ Date: Tue, 25 Jul 2023 15:45:14 +0200 Subject: Bypass visitor refusal key (#331) Co-authored-by: superhize --- src/main/java/at/hannibal2/skyhanni/config/features/Garden.java | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java index 0afc5d2fc..3091e4f85 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java @@ -171,6 +171,11 @@ public class Garden { @ConfigEditorBoolean public boolean preventRefusing = true; + @Expose + @ConfigOption(name = "Bypass Key", desc = "Hold that key to bypass the Prevent Refusing feature.") + @ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE) + public int bypassKey = Keyboard.KEY_NONE; + /** * Sync up with {at.hannibal2.skyhanni.features.garden.visitor.VisitorReward} -- cgit