Fixes, added /hub, removed CONSOLE restrictions on some commands

This commit is contained in:
Ivan
2019-08-18 21:06:47 -04:00
parent 1c3970b984
commit 7d0ea0837e
22 changed files with 523 additions and 152 deletions

View File

@ -120,6 +120,10 @@ public class ChatManager extends FreedomService
{
color = ChatColor.LIGHT_PURPLE;
}
else if (color.equals(ChatColor.DARK_RED))
{
color = ChatColor.BLUE;
}
}
return color;
}
@ -138,6 +142,10 @@ public class ChatManager extends FreedomService
{
color = ChatColor.LIGHT_PURPLE;
}
else if (color.equals(ChatColor.DARK_RED))
{
color = ChatColor.BLUE;
}
}
return color + display.getAbbr();
}
@ -177,4 +185,4 @@ public class ChatManager extends FreedomService
}
}
}
}
}