mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-11-10 21:11:07 +01:00
Merge branch '2.x' into fix-5716
This commit is contained in:
commit
6c406e9faa
@ -36,7 +36,9 @@ public class CommandSource {
|
|||||||
}
|
}
|
||||||
|
|
||||||
final String translation = tlLiteral(tlKey, args);
|
final String translation = tlLiteral(tlKey, args);
|
||||||
sendComponent(AdventureUtil.miniMessage().deserialize(translation));
|
if (!translation.isEmpty()) {
|
||||||
|
sendComponent(AdventureUtil.miniMessage().deserialize(translation));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public String tl(final String tlKey, final Object... args) {
|
public String tl(final String tlKey, final Object... args) {
|
||||||
|
@ -69,6 +69,9 @@ public final class Console implements IMessageRecipient {
|
|||||||
@Override
|
@Override
|
||||||
public void sendTl(String tlKey, Object... args) {
|
public void sendTl(String tlKey, Object... args) {
|
||||||
final String translation = tlLiteral(tlKey, args);
|
final String translation = tlLiteral(tlKey, args);
|
||||||
|
if (translation.isEmpty()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
final Audience consoleAudience = ((Essentials) ess).getBukkitAudience().sender(getCommandSender());
|
final Audience consoleAudience = ((Essentials) ess).getBukkitAudience().sender(getCommandSender());
|
||||||
final Component component = AdventureUtil.miniMessage()
|
final Component component = AdventureUtil.miniMessage()
|
||||||
|
Loading…
Reference in New Issue
Block a user