mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-04-25 16:09:44 +00:00
Fix Chat Formatting so chat type is shown first.
This commit is contained in:
parent
9824cd75b6
commit
e198b61eae
1 changed files with 1 additions and 1 deletions
|
@ -172,7 +172,7 @@ public abstract class EssentialsChatPlayer implements Listener
|
|||
}
|
||||
}
|
||||
|
||||
String message = String.format(event.getFormat(), type.concat(sender.getDisplayName()), event.getMessage());
|
||||
String message = type.concat(String.format(event.getFormat(), sender.getDisplayName(), event.getMessage()));
|
||||
synchronized (listeners)
|
||||
{
|
||||
for (Map.Entry<String, IEssentialsChatListener> listener : listeners.entrySet())
|
||||
|
|
Loading…
Reference in a new issue