Add more information to /ld scoreboard

This commit is contained in:
libraryaddict
2020-07-11 20:15:05 +12:00
parent 39489d0080
commit 4887491f10
2 changed files with 5 additions and 2 deletions

View File

@@ -135,13 +135,14 @@ public class LDScoreboard implements LDCommand {
if (!DisguiseAPI.isDisguised(player)) {
LibsMsg.DMODPLAYER_NODISGUISE.send(sender, player.getName());
LibsMsg.DISGUISE_REQUIRED.send(sender);
return;
}
} else if (sender instanceof Player) {
player = (Player) sender;
if (!DisguiseAPI.isDisguised(player)) {
LibsMsg.NOT_DISGUISED.send(sender);
LibsMsg.DISGUISE_REQUIRED.send(sender);
return;
}
} else {