Skip to content
This repository has been archived by the owner on Jul 27, 2019. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Add zero width space in correct location of display name/
  • Loading branch information
cnaude committed May 1, 2016
1 parent fb41887 commit e70a4f1
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -773,7 +773,7 @@ public String playerTokenizer(Player player, String message) {
String displayName;
if (plugin.pingFixTemplate) {
pName = addZeroWidthSpace(player.getName());
displayName = addZeroWidthSpace(player.getDisplayName());
displayName = player.getDisplayName().replace(player.getName(), pName);
} else {
pName = player.getName();
displayName = player.getDisplayName();
Expand Down

0 comments on commit e70a4f1

Please sign in to comment.