Add GuiTextArea

Reorder and add description to GuiUpload
This commit is contained in:
johni0702
2015-06-14 14:13:03 +02:00
parent 2f7692d863
commit be4ee42dcb
18 changed files with 1112 additions and 110 deletions

View File

@@ -42,4 +42,13 @@ public class KeybindRegistry {
mc.gameSettings.loadOptions();
}
public static KeyBinding getKeyBinding(String binding) {
for (KeyBinding keyBinding : mc.gameSettings.keyBindings) {
if (binding.equals(keyBinding.getKeyDescription())) {
return keyBinding;
}
}
return null;
}
}