chathistory: Fix copy to clipboard not appearing on friend messages (#11527)

This commit is contained in:
MarbleTurtle
2020-05-10 05:18:43 -07:00
committed by GitHub
parent 9a22a375df
commit d021ed35e5

View File

@@ -193,7 +193,7 @@ public class ChatHistoryPlugin extends Plugin implements KeyListener
// Use second entry as first one can be walk here with transparent chatbox
final MenuEntry entry = event.getMenuEntries()[event.getMenuEntries().length - 2];
if (entry.getType() != MenuAction.CC_OP_LOW_PRIORITY.getId())
if (entry.getType() != MenuAction.CC_OP_LOW_PRIORITY.getId() && entry.getType() != MenuAction.RUNELITE.getId())
{
return;
}