Rename /reportstat command to /reportstats
This commit is contained in:
parent
779efe3f47
commit
26aff936a0
@ -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));
|
||||
}
|
||||
|
||||
|
@ -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
|
Loading…
Reference in New Issue
Block a user