Correct unbanip's permission for broadcasts

This commit is contained in:
dashaw92 2019-09-04 03:32:07 -04:00 committed by md678685
parent b3a54a78bc
commit 45461a93b0

View file

@ -44,6 +44,6 @@ public class Commandunbanip extends EssentialsCommand {
final String senderName = sender.isPlayer() ? sender.getPlayer().getDisplayName() : Console.NAME;
server.getLogger().log(Level.INFO, tl("playerUnbanIpAddress", senderName, ipAddress));
ess.broadcastMessage("essentials.ban.notify", tl("playerUnbanIpAddress", senderName, ipAddress));
ess.broadcastMessage("essentials.banip.notify", tl("playerUnbanIpAddress", senderName, ipAddress));
}
}