Skip to content
Closed
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 @@ -30,8 +30,7 @@ public class ChatScreenHook {

public static void copyChatMessage(MouseButtonEvent event, boolean isDoubleClick, CallbackInfoReturnable<Boolean> cir) {
if (event.button() != 0) return;
if (Feature.DEVELOPER_MODE.isDisabled()
&& (Feature.CHAT_MESSAGE_COPYING.isDisabled() || !main.getUtils().isOnSkyblock())) {
if (Feature.DEVELOPER_MODE.isDisabled() && Feature.CHAT_MESSAGE_COPYING.isDisabled()) {
return;
}

Expand Down Expand Up @@ -94,4 +93,4 @@ public static void copyChatMessage(MouseButtonEvent event, boolean isDoubleClick
}
}

}
}