Revert "Re add the permission holograms.admin" - users will just read

the documentation and find out that was changed.
This commit is contained in:
filoghost 2014-09-01 21:11:03 +02:00
parent 4718ff3db1
commit b4afaf2489

View File

@ -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();