Added space when adding reason to string.

This commit is contained in:
delbertina 2017-12-17 00:16:06 -06:00
parent 127a7bb2ce
commit 034ffbd0bc
6 changed files with 6 additions and 6 deletions

View file

@ -118,7 +118,7 @@ public class Commandseen extends EssentialsCommand {
}
if (user.isMuted()) {
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();
if (location != null && (!(sender.isPlayer()) || ess.getUser(sender.getPlayer()).isAuthorized("essentials.geoip.show"))) {