Skip to content

Commit

Permalink
Unnecessary commit due to LabYMod.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmbRandy committed Aug 19, 2023
1 parent 5093438 commit 0fe4975
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ private enum DIRECTION {

@Subscribe
public void messageSend(ChatMessageSendEvent event) {
if(!Addon.isGG()) {
return;
}

if(event.getMessage().toLowerCase().startsWith("/p h")) {
lastPlot = event.getMessage();
}
Expand Down Expand Up @@ -60,7 +64,7 @@ public void chatMessageReceived(ChatReceiveEvent event) {

@Subscribe
public void keyDownEvent(KeyEvent event) {
if(lastPlot == null || nextCommand != null) {
if(lastPlot == null || nextCommand != null || !Addon.isGG()) {
return;
}

Expand Down

0 comments on commit 0fe4975

Please sign in to comment.