mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-23 13:46:46 +01:00
Added missing permissions for mcrank mctop and mcstats
This commit is contained in:
parent
12324017d7
commit
e9425625e2
@ -27,6 +27,10 @@ public class McrankCommand implements CommandExecutor {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (CommandHelper.noCommandPermissions(sender, "mcmmo.commands.mcrank")) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
Player player = (Player) sender;
|
Player player = (Player) sender;
|
||||||
String playerName;
|
String playerName;
|
||||||
switch (args.length) {
|
switch (args.length) {
|
||||||
|
@ -8,6 +8,7 @@ import org.bukkit.command.Command;
|
|||||||
import org.bukkit.command.CommandExecutor;
|
import org.bukkit.command.CommandExecutor;
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
|
|
||||||
|
import com.gmail.nossr50.commands.CommandHelper;
|
||||||
import com.gmail.nossr50.config.Config;
|
import com.gmail.nossr50.config.Config;
|
||||||
import com.gmail.nossr50.database.Database;
|
import com.gmail.nossr50.database.Database;
|
||||||
import com.gmail.nossr50.locale.LocaleLoader;
|
import com.gmail.nossr50.locale.LocaleLoader;
|
||||||
@ -19,10 +20,13 @@ import com.gmail.nossr50.util.Misc;
|
|||||||
public class MctopCommand implements CommandExecutor {
|
public class MctopCommand implements CommandExecutor {
|
||||||
@Override
|
@Override
|
||||||
public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {
|
public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {
|
||||||
|
if (CommandHelper.noCommandPermissions(sender, "mcmmo.commands.mctop")) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
String usage = LocaleLoader.getString("Commands.Usage.2", "mctop", "[" + LocaleLoader.getString("Commands.Usage.Skill") + "]", "[" + LocaleLoader.getString("Commands.Usage.Page") + "]");
|
String usage = LocaleLoader.getString("Commands.Usage.2", "mctop", "[" + LocaleLoader.getString("Commands.Usage.Skill") + "]", "[" + LocaleLoader.getString("Commands.Usage.Page") + "]");
|
||||||
|
|
||||||
if (!Config.getInstance().getUseMySQL()) {
|
if (!Config.getInstance().getUseMySQL()) {
|
||||||
|
|
||||||
switch (args.length) {
|
switch (args.length) {
|
||||||
case 0:
|
case 0:
|
||||||
flatfileDisplay(1, "ALL", sender);
|
flatfileDisplay(1, "ALL", sender);
|
||||||
|
@ -725,7 +725,9 @@ permissions:
|
|||||||
children:
|
children:
|
||||||
mcmmo.commands.inspect: true
|
mcmmo.commands.inspect: true
|
||||||
mcmmo.commands.mcability: true
|
mcmmo.commands.mcability: true
|
||||||
|
mcmmo.commands.mcrank: true
|
||||||
mcmmo.commands.mcstats: true
|
mcmmo.commands.mcstats: true
|
||||||
|
mcmmo.commands.mctop: true
|
||||||
mcmmo.commands.party.all: true
|
mcmmo.commands.party.all: true
|
||||||
mcmmo.commands.ptp: true
|
mcmmo.commands.ptp: true
|
||||||
mcmmo.commands.ability:
|
mcmmo.commands.ability:
|
||||||
@ -764,6 +766,12 @@ permissions:
|
|||||||
description: Allows access to the mcgod command
|
description: Allows access to the mcgod command
|
||||||
mcmmo.commands.mcgod.others:
|
mcmmo.commands.mcgod.others:
|
||||||
description: Allows access to the mcgod command for other players
|
description: Allows access to the mcgod command for other players
|
||||||
|
mcmmo.commands.mcrank:
|
||||||
|
description: Allows access to the mcrank command
|
||||||
|
mcmmo.commands.mcstats:
|
||||||
|
description: Allows access to the mcstats command
|
||||||
|
mcmmo.commands.mctop:
|
||||||
|
description: Allows access to the mctop command
|
||||||
mcmmo.commands.mmoedit:
|
mcmmo.commands.mmoedit:
|
||||||
description: Allows access to the mmoedit command
|
description: Allows access to the mmoedit command
|
||||||
mcmmo.commands.mmoedit.others:
|
mcmmo.commands.mmoedit.others:
|
||||||
|
Loading…
Reference in New Issue
Block a user