From b4afaf2489cb19eb8daa7b732fe1bf0ce02f6689 Mon Sep 17 00:00:00 2001 From: filoghost Date: Mon, 1 Sep 2014 21:11:03 +0200 Subject: [PATCH] Revert "Re add the permission holograms.admin" - users will just read the documentation and find out that was changed. --- .../filoghost/holograms/commands/main/HologramSubCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HolographicDisplays/src/com/gmail/filoghost/holograms/commands/main/HologramSubCommand.java b/HolographicDisplays/src/com/gmail/filoghost/holograms/commands/main/HologramSubCommand.java index def6ba16..a00f12b8 100644 --- a/HolographicDisplays/src/com/gmail/filoghost/holograms/commands/main/HologramSubCommand.java +++ b/HolographicDisplays/src/com/gmail/filoghost/holograms/commands/main/HologramSubCommand.java @@ -35,7 +35,7 @@ public abstract class HologramSubCommand { public final boolean hasPermission(CommandSender sender) { if (permission == null) return true; - return sender.hasPermission("holograms.admin") || sender.hasPermission(permission); + return sender.hasPermission(permission); } public abstract String getPossibleArguments();