mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 05:06:45 +01:00
Fixed /prefixother and prefix colors
This commit is contained in:
parent
975b333b9e
commit
46ca332645
@ -249,6 +249,8 @@ public class vMinecraftChat {
|
|||||||
//Add the suffix if there is one
|
//Add the suffix if there is one
|
||||||
output += vMinecraftUsers.getProfile(player).getSuffix();
|
output += vMinecraftUsers.getProfile(player).getSuffix();
|
||||||
|
|
||||||
|
output = Colors.White + output;
|
||||||
|
|
||||||
/*if(playerPrefix != null && !playerPrefix.isEmpty())
|
/*if(playerPrefix != null && !playerPrefix.isEmpty())
|
||||||
output = applyColors(playerPrefix.substring(1)) + output;*/
|
output = applyColors(playerPrefix.substring(1)) + output;*/
|
||||||
|
|
||||||
|
@ -214,7 +214,7 @@ public class vMinecraftCommands{
|
|||||||
}
|
}
|
||||||
|
|
||||||
if(args.length >= 2 && args[0] != null){
|
if(args.length >= 2 && args[0] != null){
|
||||||
player.setPrefix(args[1]);
|
other.setPrefix(args[1]);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(args.length >= 3 && args[1] != null){
|
if(args.length >= 3 && args[1] != null){
|
||||||
|
Loading…
Reference in New Issue
Block a user