diff options
author | syeyoung <cyong06@naver.com> | 2021-08-05 14:08:50 +0900 |
---|---|---|
committer | syeyoung <cyong06@naver.com> | 2021-08-05 14:08:50 +0900 |
commit | 36fea310f12486511a1c8f4214125703ae3cb6f4 (patch) | |
tree | ec909d5dbac9955e340c1fe1b4d7fda19324051d /src/main/java/kr/syeyoung | |
parent | fa613d10920023292ba59631245d2496177cd904 (diff) | |
download | Skyblock-Dungeons-Guide-36fea310f12486511a1c8f4214125703ae3cb6f4.tar.gz Skyblock-Dungeons-Guide-36fea310f12486511a1c8f4214125703ae3cb6f4.tar.bz2 Skyblock-Dungeons-Guide-36fea310f12486511a1c8f4214125703ae3cb6f4.zip |
- Capitalization in Keybinds
Diffstat (limited to 'src/main/java/kr/syeyoung')
-rwxr-xr-x | src/main/java/kr/syeyoung/dungeonsguide/Keybinds.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/kr/syeyoung/dungeonsguide/Keybinds.java b/src/main/java/kr/syeyoung/dungeonsguide/Keybinds.java index 26300fa4..1093e645 100755 --- a/src/main/java/kr/syeyoung/dungeonsguide/Keybinds.java +++ b/src/main/java/kr/syeyoung/dungeonsguide/Keybinds.java @@ -37,13 +37,13 @@ public class Keybinds public static void register() { - editingSession = new KeyBinding("start editing session", Keyboard.KEY_NONE, "Dungeons Guide"); + editingSession = new KeyBinding("Start editing session", Keyboard.KEY_NONE, "Dungeons Guide"); ClientRegistry.registerKeyBinding(editingSession); - sendBombdefuse = new KeyBinding("send and save bombdefuse solution", Keyboard.KEY_F, "Dungeons Guide"); + sendBombdefuse = new KeyBinding("Send and save bombdefuse solution", Keyboard.KEY_F, "Dungeons Guide"); ClientRegistry.registerKeyBinding(sendBombdefuse); - nextSecret = new KeyBinding("navigate to next secret. (Req option enabled at /dg)", Keyboard.KEY_NONE, "Dungeons Guide"); + nextSecret = new KeyBinding("Navigate to next secret. (Req option enabled at /dg)", Keyboard.KEY_R, "Dungeons Guide"); ClientRegistry.registerKeyBinding(nextSecret); - togglePathfind = new KeyBinding("toggle Pathfind. (Req option enabled at /dg)", Keyboard.KEY_NONE, "Dungeons Guide"); + togglePathfind = new KeyBinding("Toggle Pathfind. (Req option enabled at /dg)", Keyboard.KEY_NONE, "Dungeons Guide"); ClientRegistry.registerKeyBinding(togglePathfind); freezeLines = new KeyBinding("Toggle freeze pathfind lines", Keyboard.KEY_NONE, "Dungeons Guide"); ClientRegistry.registerKeyBinding(freezeLines); |