diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-06-01 08:52:32 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-06-01 08:52:32 +0200 |
commit | 5f80b1f45cd68c34806279f0eb68a95b2db30dab (patch) | |
tree | 6ba3630b6359af03589a091ecabdfb32fa8dd7ee | |
parent | 20c1a9c6eb85a518294aa6a058dcf710f5616a00 (diff) | |
download | skyhanni-5f80b1f45cd68c34806279f0eb68a95b2db30dab.tar.gz skyhanni-5f80b1f45cd68c34806279f0eb68a95b2db30dab.tar.bz2 skyhanni-5f80b1f45cd68c34806279f0eb68a95b2db30dab.zip |
While Z is not a default movement key like WASD, there still is a reason not to have peek chat default enabled
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/chat/ChatConfig.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/chat/ChatConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/chat/ChatConfig.java index f2d187687..9369f2c6f 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/chat/ChatConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/chat/ChatConfig.java @@ -17,7 +17,7 @@ public class ChatConfig { @Expose @ConfigOption(name = "Peek Chat", desc = "Hold this key to keep the chat open.") @ConfigEditorKeybind(defaultKey = Keyboard.KEY_Z) - public int peekChat = Keyboard.KEY_Z; + public int peekChat = Keyboard.KEY_NONE; @Expose @ConfigOption(name = "Chat Filter Types", desc = "") |