From 36fea310f12486511a1c8f4214125703ae3cb6f4 Mon Sep 17 00:00:00 2001 From: syeyoung Date: Thu, 5 Aug 2021 14:08:50 +0900 Subject: - Capitalization in Keybinds --- src/main/java/kr/syeyoung/dungeonsguide/Keybinds.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/main/java/kr/syeyoung') 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); -- cgit