diff --git a/src/net/cupofcode/instruments/listeners/InventoryClick.java b/src/net/cupofcode/instruments/listeners/InventoryClick.java index ec46434..780c6fa 100644 --- a/src/net/cupofcode/instruments/listeners/InventoryClick.java +++ b/src/net/cupofcode/instruments/listeners/InventoryClick.java @@ -64,7 +64,7 @@ public void onInventoryClick(InventoryClickEvent e) { if (useChords) { if (e.getClick().equals(ClickType.SHIFT_LEFT) || e.getClick().equals(ClickType.SHIFT_RIGHT)) { - boolean minor = e.getClick().equals(ClickType.SHIFT_LEFT) ? true : false; + boolean minor = e.getClick().equals(ClickType.SHIFT_LEFT) ? false : true; String[] notes = minor ? Utils.getMinorTriad(note) : Utils.getMajorTriad(note); for (String pNote : notes) { instrument.playNote(pNote, octave);