Skip to content

Commit

Permalink
Do not send "nobody heard" if proxy range
Browse files Browse the repository at this point in the history
  • Loading branch information
Brikster committed Dec 22, 2023
1 parent 89faa29 commit 9bc0ad5
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,9 @@ public void handleFinishedEarlyContextEvent(AsyncPlayerChatEvent event) {
}
}

sendNobodyHeardYou(event, middleContext);
if (middleContext.getChat().getRange() > -3) {
sendNobodyHeardYou(event, middleContext);
}

processed = true;
} catch (Throwable t) {
Expand Down

0 comments on commit 9bc0ad5

Please sign in to comment.