mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-11-14 14:45:27 +01:00
Added space when adding reason to string.
This commit is contained in:
parent
127a7bb2ce
commit
034ffbd0bc
@ -52,7 +52,7 @@ public class Commandafk extends EssentialsCommand {
|
|||||||
if (message != null && sender != null) {
|
if (message != null && sender != null) {
|
||||||
if (sender.isMuted()) {
|
if (sender.isMuted()) {
|
||||||
throw new Exception(tl("voiceSilenced") + (sender.hasMuteReason() ?
|
throw new Exception(tl("voiceSilenced") + (sender.hasMuteReason() ?
|
||||||
tl("muteReason", sender.getMuteReason()) : ""));
|
(" " + tl("muteReason", sender.getMuteReason())) : ""));
|
||||||
}
|
}
|
||||||
if (!sender.isAuthorized("essentials.afk.message")) {
|
if (!sender.isAuthorized("essentials.afk.message")) {
|
||||||
throw new Exception(tl("noPermToAFKMessage"));
|
throw new Exception(tl("noPermToAFKMessage"));
|
||||||
|
@ -49,7 +49,7 @@ public class Commandmail extends EssentialsCommand {
|
|||||||
|
|
||||||
if (user.isMuted()) {
|
if (user.isMuted()) {
|
||||||
throw new Exception(tl("voiceSilenced") + (user.hasMuteReason() ?
|
throw new Exception(tl("voiceSilenced") + (user.hasMuteReason() ?
|
||||||
tl("muteReason", user.getMuteReason()) : ""));
|
(" " + tl("muteReason", user.getMuteReason())) : ""));
|
||||||
}
|
}
|
||||||
|
|
||||||
User u = getPlayer(server, args[1], true, true);
|
User u = getPlayer(server, args[1], true, true);
|
||||||
|
@ -25,7 +25,7 @@ public class Commandme extends EssentialsCommand {
|
|||||||
public void run(Server server, User user, String commandLabel, String[] args) throws Exception {
|
public void run(Server server, User user, String commandLabel, String[] args) throws Exception {
|
||||||
if (user.isMuted()) {
|
if (user.isMuted()) {
|
||||||
throw new Exception(tl("voiceSilenced") + (user.hasMuteReason() ?
|
throw new Exception(tl("voiceSilenced") + (user.hasMuteReason() ?
|
||||||
tl("muteReason", user.getMuteReason()) : ""));
|
(" " + tl("muteReason", user.getMuteReason())) : ""));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (args.length < 1) {
|
if (args.length < 1) {
|
||||||
|
@ -29,7 +29,7 @@ public class Commandr extends EssentialsCommand {
|
|||||||
|
|
||||||
if (user.isMuted()) {
|
if (user.isMuted()) {
|
||||||
throw new Exception(tl("voiceSilenced") + (user.hasMuteReason() ?
|
throw new Exception(tl("voiceSilenced") + (user.hasMuteReason() ?
|
||||||
tl("muteReason", user.getMuteReason()) : ""));
|
(" " + tl("muteReason", user.getMuteReason())) : ""));
|
||||||
}
|
}
|
||||||
|
|
||||||
message = FormatUtil.formatMessage(user, "essentials.msg", message);
|
message = FormatUtil.formatMessage(user, "essentials.msg", message);
|
||||||
|
@ -118,7 +118,7 @@ public class Commandseen extends EssentialsCommand {
|
|||||||
}
|
}
|
||||||
if (user.isMuted()) {
|
if (user.isMuted()) {
|
||||||
throw new Exception(tl("whoisMuted", (user.getMuteTimeout() > 0 ? DateUtil.formatDateDiff(user.getMuteTimeout()) : tl("true"))) + (user.hasMuteReason() ?
|
throw new Exception(tl("whoisMuted", (user.getMuteTimeout() > 0 ? DateUtil.formatDateDiff(user.getMuteTimeout()) : tl("true"))) + (user.hasMuteReason() ?
|
||||||
tl("muteReason", user.getMuteReason()) : ""));
|
(" " + tl("muteReason", user.getMuteReason())) : ""));
|
||||||
}
|
}
|
||||||
final String location = user.getGeoLocation();
|
final String location = user.getGeoLocation();
|
||||||
if (location != null && (!(sender.isPlayer()) || ess.getUser(sender.getPlayer()).isAuthorized("essentials.geoip.show"))) {
|
if (location != null && (!(sender.isPlayer()) || ess.getUser(sender.getPlayer()).isAuthorized("essentials.geoip.show"))) {
|
||||||
|
@ -57,7 +57,7 @@ public class Commandwhois extends EssentialsCommand {
|
|||||||
}
|
}
|
||||||
sender.sendMessage(tl("whoisJail", (user.isJailed() ? user.getJailTimeout() > 0 ? DateUtil.formatDateDiff(user.getJailTimeout()) : tl("true") : tl("false"))));
|
sender.sendMessage(tl("whoisJail", (user.isJailed() ? user.getJailTimeout() > 0 ? DateUtil.formatDateDiff(user.getJailTimeout()) : tl("true") : tl("false"))));
|
||||||
throw new Exception(tl("voiceSilenced") + (user.hasMuteReason() ?
|
throw new Exception(tl("voiceSilenced") + (user.hasMuteReason() ?
|
||||||
tl("muteReason", user.getMuteReason()) : ""));
|
(" " + tl("muteReason", user.getMuteReason())) : ""));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
Reference in New Issue
Block a user