Skip to content

Commit

Permalink
chat message manager: set default colors for examine
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam- committed May 31, 2018
1 parent 5dc7d61 commit 08c605a
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,10 @@ private static Color getDefaultColor(ChatMessageType type, boolean transparent)
return Color.decode("#00FFFF");
case CLANCHAT:
return Color.decode("#7F0000");
case EXAMINE_ITEM:
case EXAMINE_OBJECT:
case EXAMINE_NPC:
return Color.decode("#000000");
}
}
else
Expand All @@ -187,6 +191,10 @@ private static Color getDefaultColor(ChatMessageType type, boolean transparent)
return Color.decode("#00FFFF");
case CLANCHAT:
return Color.decode("#7F0000");
case EXAMINE_ITEM:
case EXAMINE_OBJECT:
case EXAMINE_NPC:
return Color.decode("#FFFFFF");
}
}

Expand Down

0 comments on commit 08c605a

Please sign in to comment.