Skip to content

Commit

Permalink
replace all § with & in prefix/suffix to actuallay see them
Browse files Browse the repository at this point in the history
  • Loading branch information
wea_ondara committed Feb 9, 2016
1 parent b284fe3 commit 69b092f
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -24,8 +24,8 @@ public boolean test(CommandSender sender)
throw new RuntimeException("test player " + BungeeTestSuite.getTestplayer() + " not found");
}

sender.sendMessage("Prefix: " + u.buildPrefix());
sender.sendMessage("Suffix: " + u.buildSuffix());
sender.sendMessage("Prefix: " + u.buildPrefix().replaceAll("§", "&"));
sender.sendMessage("Suffix: " + u.buildSuffix().replaceAll("§", "&"));

return result();
}
Expand Down

0 comments on commit 69b092f

Please sign in to comment.