Fix &h not being removed from the message properly
This commit is contained in:
parent
e2c357ccb0
commit
f936e1b869
@ -24,19 +24,18 @@ public class CommandAlert extends Command
|
|||||||
StringBuilder builder = new StringBuilder();
|
StringBuilder builder = new StringBuilder();
|
||||||
if (!args[0].contains("&h")) //They want to hide the alert prefix
|
if (!args[0].contains("&h")) //They want to hide the alert prefix
|
||||||
{
|
{
|
||||||
builder.append(ChatColor.DARK_PURPLE);
|
builder.append(ChatColor.DARK_PURPLE);
|
||||||
builder.append("[Alert] "); //No space at start.
|
builder.append("[Alert] "); //No space at start.
|
||||||
} else
|
|
||||||
{
|
|
||||||
args[0].replaceAll("&h", ""); //Remove hide control code from message
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
for (String s : args)
|
for (String s : args)
|
||||||
{
|
{
|
||||||
|
s = s.replaceAll("&h", ""); //Fix replace
|
||||||
builder.append(ChatColor.translateAlternateColorCodes('&', s)); //Allow custom colours
|
builder.append(ChatColor.translateAlternateColorCodes('&', s)); //Allow custom colours
|
||||||
builder.append(" ");
|
builder.append(" ");
|
||||||
}
|
}
|
||||||
|
|
||||||
String message = builder.substring(0, builder.length() - 1);
|
String message = builder.substring(0, builder.length() - 1);
|
||||||
for (UserConnection con : BungeeCord.instance.connections.values())
|
for (UserConnection con : BungeeCord.instance.connections.values())
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user