Rename /reportstat command to /reportstats

This commit is contained in:
Keir Nellyer 2016-08-19 16:46:49 +01:00
parent 779efe3f47
commit 26aff936a0
2 changed files with 5 additions and 5 deletions

View File

@ -10,7 +10,7 @@ import mineplex.core.report.command.ReportAbortCommand;
import mineplex.core.report.command.ReportCloseCommand;
import mineplex.core.report.command.ReportCommand;
import mineplex.core.report.command.ReportHandleCommand;
import mineplex.core.report.command.ReportStatCommand;
import mineplex.core.report.command.ReportStatsCommand;
/**
* Main class for this module, handles initialization and disabling of the module.
@ -36,7 +36,7 @@ public class ReportPlugin extends MiniPlugin
addCommand(new ReportCommand(this));
addCommand(new ReportHandleCommand(this));
addCommand(new ReportCloseCommand(this));
addCommand(new ReportStatCommand(this));
addCommand(new ReportStatsCommand(this));
addCommand(new ReportAbortCommand(this));
}

View File

@ -21,11 +21,11 @@ import org.apache.commons.lang.StringUtils;
/**
* A staff command for viewing report related statistics of a player.
*/
public class ReportStatCommand extends CommandBase<ReportPlugin>
public class ReportStatsCommand extends CommandBase<ReportPlugin>
{
public ReportStatCommand(ReportPlugin reportPlugin)
public ReportStatsCommand(ReportPlugin reportPlugin)
{
super(reportPlugin, Rank.MODERATOR, "reportstat", "rs");
super(reportPlugin, Rank.MODERATOR, "reportstats", "rs");
}
@Override