Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,9 @@ protected void handleChatRecipients(AbstractChatEvent event) {

final ChatProcessingCache.Chat chat = cache.getProcessedChat(event.getPlayer());

// If local chat is enabled, handle the recipients here; else we have nothing to do
// If local chat is enabled, handle the recipients here; else we can just fire the chat event and return
if (chat.getRadius() < 1) {
callChatEvent(event, chat.getType(), null);
return;
}
final long radiusSquared = chat.getRadius() * chat.getRadius();
Expand Down
Loading