From bd865c7e64e2bdb2833cea7999fe85da52e8955d Mon Sep 17 00:00:00 2001 From: Keir Date: Sat, 9 Jan 2016 23:12:08 +0000 Subject: [PATCH] Fix command permissions. --- .../src/mineplex/core/report/command/ReportCloseCommand.java | 2 +- .../src/mineplex/core/report/command/ReportHandleCommand.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Plugins/Mineplex.Core/src/mineplex/core/report/command/ReportCloseCommand.java b/Plugins/Mineplex.Core/src/mineplex/core/report/command/ReportCloseCommand.java index 4bd99a4e9..493c5390f 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/report/command/ReportCloseCommand.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/report/command/ReportCloseCommand.java @@ -16,7 +16,7 @@ public class ReportCloseCommand extends CommandBase public ReportCloseCommand(ReportPlugin plugin) { - super(plugin, Rank.ADMIN, "reportclose", "rc"); + super(plugin, Rank.MODERATOR, "reportclose", "rc"); } @Override diff --git a/Plugins/Mineplex.Core/src/mineplex/core/report/command/ReportHandleCommand.java b/Plugins/Mineplex.Core/src/mineplex/core/report/command/ReportHandleCommand.java index b83c19576..608d1d7eb 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/report/command/ReportHandleCommand.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/report/command/ReportHandleCommand.java @@ -15,7 +15,7 @@ public class ReportHandleCommand extends CommandBase public ReportHandleCommand(ReportPlugin plugin) { - super(plugin, Rank.ADMIN, "reporthandle", "rh"); + super(plugin, Rank.MODERATOR, "reporthandle", "rh"); } @Override