Skip to content

Commit

Permalink
Fix macros always eating clicks
Browse files Browse the repository at this point in the history
  • Loading branch information
mattmess1221 committed Sep 30, 2015
1 parent 8709633 commit a3df3c1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public boolean onMouseClicked(int mouseX, int mouseY, int button) {
return false;
EventInfo<GuiChat> event = mkEvnt("", chat, true);
MacroModCore.onChatGuiEvent(event, mouseX, mouseY, button);
return event.isCancellable();
return event.isCancelled();
}

@Override
Expand Down

0 comments on commit a3df3c1

Please sign in to comment.