We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e9b4f1 commit 6063514Copy full SHA for 6063514
src/main/java/stormedpanda/simplyjetpacks/handlers/KeybindHandler.java
@@ -51,10 +51,10 @@ public void onKeyInput(InputEvent.KeyInputEvent event) {
51
ItemStack chestStack = player.getItemStackFromSlot(EquipmentSlotType.CHEST);
52
Item chestItem = null;
53
JetpackItem jetpack;
54
- if(!chestStack.isEmpty()) { chestItem = chestStack.getItem(); }
+ if (!chestStack.isEmpty()) { chestItem = chestStack.getItem(); }
55
if (chestItem instanceof JetpackItem) {
56
jetpack = (JetpackItem) chestItem;
57
- if(JETPACK_GUI_KEY.isPressed()) {
+ if (JETPACK_GUI_KEY.isPressed()) {
58
Minecraft.getInstance().displayGuiScreen(new JetpackGuiScreen());
59
}
60
if (JETPACK_ENGINE_KEY.isPressed()) {
0 commit comments