From 45461a93b05d47c3b75d426f150d1729ba2f65f6 Mon Sep 17 00:00:00 2001 From: dashaw92 Date: Wed, 4 Sep 2019 03:32:07 -0400 Subject: [PATCH] Correct unbanip's permission for broadcasts --- .../src/com/earth2me/essentials/commands/Commandunbanip.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandunbanip.java b/Essentials/src/com/earth2me/essentials/commands/Commandunbanip.java index a96eb3595..bae6b4bd8 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandunbanip.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandunbanip.java @@ -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)); } }