mirror of
https://github.com/EssentialsX/Essentials.git
synced 2025-01-18 14:11:40 +01:00
Parse colors from broadcast world command (#5913)
Make the broadcast world command mimic the behavior of the broadcast command which correctly parses colors from the broadcast message. Broadcast World Command Output Before: https://i.imgur.com/aFR6Zzb.png Broadcast World Command Output After: https://i.imgur.com/qrvb8XD.png
This commit is contained in:
parent
f1a5caf98e
commit
b54c8c1774
@ -3,6 +3,7 @@ package com.earth2me.essentials.commands;
|
|||||||
import com.earth2me.essentials.CommandSource;
|
import com.earth2me.essentials.CommandSource;
|
||||||
import com.earth2me.essentials.User;
|
import com.earth2me.essentials.User;
|
||||||
import com.earth2me.essentials.utils.AdventureUtil;
|
import com.earth2me.essentials.utils.AdventureUtil;
|
||||||
|
import com.earth2me.essentials.utils.FormatUtil;
|
||||||
import com.google.common.collect.Lists;
|
import com.google.common.collect.Lists;
|
||||||
import net.ess3.api.TranslatableException;
|
import net.ess3.api.TranslatableException;
|
||||||
import org.bukkit.Server;
|
import org.bukkit.Server;
|
||||||
@ -53,7 +54,7 @@ public class Commandbroadcastworld extends EssentialsCommand {
|
|||||||
if (message.isEmpty()) {
|
if (message.isEmpty()) {
|
||||||
throw new NotEnoughArgumentsException();
|
throw new NotEnoughArgumentsException();
|
||||||
}
|
}
|
||||||
ess.broadcastTl(null, u -> !u.getBase().getWorld().equals(world), true, "broadcast", message, AdventureUtil.parsed(AdventureUtil.legacyToMini(name)));
|
ess.broadcastTl(null, u -> !u.getBase().getWorld().equals(world), true, "broadcast", FormatUtil.replaceFormat(message).replace("\\n", "\n"), AdventureUtil.parsed(AdventureUtil.legacyToMini(name)));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
Reference in New Issue
Block a user