Fix command restrict
This commit is contained in:
parent
015021bbf0
commit
4810eb0ac4
@ -19,14 +19,15 @@ public class CommandRestrict implements Listener {
|
||||
Player player = event.getPlayer();
|
||||
String playercommand = event.getMessage().toLowerCase();
|
||||
if (plugin.sit.containsKey(player.getName()))
|
||||
{
|
||||
for (String disabledCommand : plugin.sitDisabledCommands)
|
||||
{
|
||||
if (plugin.sitDisableAllCommands)
|
||||
{
|
||||
event.setCancelled(true);
|
||||
player.sendMessage(plugin.msgCommandRestricted);
|
||||
} else
|
||||
return;
|
||||
}
|
||||
for (String disabledCommand : plugin.sitDisabledCommands)
|
||||
{
|
||||
if (disabledCommand.startsWith(playercommand))
|
||||
{
|
||||
String therest = disabledCommand.replace(playercommand, "");
|
||||
@ -34,6 +35,7 @@ public class CommandRestrict implements Listener {
|
||||
{
|
||||
event.setCancelled(true);
|
||||
player.sendMessage(plugin.msgCommandRestricted);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user