Skip to content

Commit

Permalink
#14 dont mark players with * in cc, fc or friends list
Browse files Browse the repository at this point in the history
  • Loading branch information
Box-Of-Hats committed Sep 30, 2021
1 parent 25cdd01 commit e027fa2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repositories {
mavenCentral()
}

def runeLiteVersion = '1.7.5'
def runeLiteVersion = '1.7.24'

dependencies {
compileOnly group: 'net.runelite', name:'client', version: runeLiteVersion
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/corpffa/CorpFfaOverlay.java
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ private void drawPlayerList(Graphics2D graphics2D, List<LayoutableRenderableEnti
String rightLabel = playerState.SpecCount + "";
Color rightColor = config.defaultColor();

String leftLabel = player.getName() + (player.isFriendsChatMember() ? "" : " " + nonFriendsChatIndicator);
String leftLabel = player.getName() + (player.isClanMember() || player.isFriend() || player.isFriendsChatMember() ? "" : " " + nonFriendsChatIndicator);
Color leftColor = config.defaultColor();

Color highlightColor = null;
Expand Down

0 comments on commit e027fa2

Please sign in to comment.