mirror of
https://github.com/EssentialsX/Essentials.git
synced 2025-01-26 10:01:49 +01:00
Merge branch 'master' of https://github.com/essentials/Essentials
This commit is contained in:
commit
a16ced78a5
@ -21,8 +21,9 @@ public class Commandmangadd extends EssentialsCommand
|
||||
throw new NotEnoughArgumentsException();
|
||||
}
|
||||
final String group = args[0];
|
||||
|
||||
ess.getServer().dispatchCommand(sender, "/permissions g:"+group+" create");
|
||||
String command = "/permissions g:" + group + " create";
|
||||
sender.sendMessage(commandLabel + " is deprecated. Use " + command + " instead.");
|
||||
ess.getServer().dispatchCommand(sender, command);
|
||||
}
|
||||
|
||||
|
||||
|
@ -22,7 +22,9 @@ public class Commandmangaddi extends EssentialsCommand
|
||||
}
|
||||
final String target = args[0];
|
||||
final String group = args[1];
|
||||
ess.getServer().dispatchCommand(sender, "/permissions g:"+target+" parents add "+group+"");
|
||||
String command = "/permissions g:"+target+" parents add "+group;
|
||||
sender.sendMessage(commandLabel + " is deprecated. Use " + command + " instead.");
|
||||
ess.getServer().dispatchCommand(sender, command);
|
||||
}
|
||||
|
||||
|
||||
|
@ -22,7 +22,9 @@ public class Commandmangaddp extends EssentialsCommand
|
||||
}
|
||||
final String target = args[0];
|
||||
final String perm = args[1];
|
||||
ess.getServer().dispatchCommand(sender, "/permissions g:"+target+" perms add "+perm+"");
|
||||
String command = "/permissions g:"+target+" perms add "+perm;
|
||||
sender.sendMessage(commandLabel + " is deprecated. Use " + command + " instead.");
|
||||
ess.getServer().dispatchCommand(sender, command);
|
||||
}
|
||||
|
||||
|
||||
|
@ -22,7 +22,9 @@ public class Commandmangcheckp extends EssentialsCommand
|
||||
}
|
||||
final String target = args[0];
|
||||
final String perm = args[1];
|
||||
ess.getServer().dispatchCommand(sender, "/permissions g:"+target+" has "+perm+"");
|
||||
String command = "/permissions g:"+target+" has "+perm;
|
||||
sender.sendMessage(commandLabel + " is deprecated. Use " + command + " instead.");
|
||||
ess.getServer().dispatchCommand(sender, command);
|
||||
}
|
||||
|
||||
|
||||
|
@ -21,7 +21,9 @@ public class Commandmangdel extends EssentialsCommand
|
||||
throw new NotEnoughArgumentsException();
|
||||
}
|
||||
final String group = args[0];
|
||||
ess.getServer().dispatchCommand(sender, "/permissions g:"+group+" delete");
|
||||
String command = "/permissions g:"+group+" delete";
|
||||
sender.sendMessage(commandLabel + " is deprecated. Use " + command + " instead.");
|
||||
ess.getServer().dispatchCommand(sender, command);
|
||||
}
|
||||
|
||||
|
||||
|
@ -22,7 +22,9 @@ public class Commandmangdeli extends EssentialsCommand
|
||||
}
|
||||
final String target = args[0];
|
||||
final String group = args[1];
|
||||
ess.getServer().dispatchCommand(sender, "/permissions g:"+target+" parents remove "+group+"");
|
||||
String command = "/permissions g:"+target+" parents remove "+group;
|
||||
sender.sendMessage(commandLabel + " is deprecated. Use " + command + " instead.");
|
||||
ess.getServer().dispatchCommand(sender, command);
|
||||
}
|
||||
|
||||
|
||||
|
@ -22,7 +22,9 @@ public class Commandmangdelp extends EssentialsCommand
|
||||
}
|
||||
final String target = args[0];
|
||||
final String perm = args[1];
|
||||
ess.getServer().dispatchCommand(sender, "/permissions g:"+target+" perms remove "+perm+"");
|
||||
String command = "/permissions g:"+target+" perms remove "+perm;
|
||||
sender.sendMessage(commandLabel + " is deprecated. Use " + command + " instead.");
|
||||
ess.getServer().dispatchCommand(sender, command);
|
||||
}
|
||||
|
||||
|
||||
|
@ -21,7 +21,9 @@ public class Commandmanglistp extends EssentialsCommand
|
||||
throw new NotEnoughArgumentsException();
|
||||
}
|
||||
final String target = args[0];
|
||||
ess.getServer().dispatchCommand(sender, "/permissions g:"+target+" perms list");
|
||||
String command = "/permissions g:"+target+" perms list";
|
||||
sender.sendMessage(commandLabel + " is deprecated. Use " + command + " instead.");
|
||||
ess.getServer().dispatchCommand(sender, command);
|
||||
}
|
||||
|
||||
|
||||
|
@ -21,8 +21,9 @@ public class Commandmanload extends EssentialsCommand
|
||||
{
|
||||
world = args[0];
|
||||
}
|
||||
|
||||
ess.getServer().dispatchCommand(sender, "/permissions -reload "+world+"");
|
||||
String command = "/permissions -reload "+world;
|
||||
sender.sendMessage(commandLabel + " is deprecated. Use " + command + " instead.");
|
||||
ess.getServer().dispatchCommand(sender, command);
|
||||
}
|
||||
|
||||
|
||||
|
@ -23,7 +23,9 @@ public class Commandmanuadd extends EssentialsCommand
|
||||
final String player = args[0];
|
||||
final String group = args[1];
|
||||
//TODO: Make this command add a player if it doesnt exist /permissions +player+ create
|
||||
ess.getServer().dispatchCommand(sender, "/permissions "+player+" parents add "+group+"");
|
||||
String command = "/permissions "+player+" parents add "+group;
|
||||
sender.sendMessage(commandLabel + " is deprecated. Use " + command + " instead.");
|
||||
ess.getServer().dispatchCommand(sender, command);
|
||||
}
|
||||
|
||||
|
||||
|
@ -22,7 +22,9 @@ public class Commandmanuaddp extends EssentialsCommand
|
||||
}
|
||||
final String player = args[0];
|
||||
final String perm = args[1];
|
||||
ess.getServer().dispatchCommand(sender, "/permissions "+player+" perms add "+perm+"");
|
||||
String command = "/permissions "+player+" perms add "+perm;
|
||||
sender.sendMessage(commandLabel + " is deprecated. Use " + command + " instead.");
|
||||
ess.getServer().dispatchCommand(sender, command);
|
||||
}
|
||||
|
||||
|
||||
|
@ -22,7 +22,9 @@ public class Commandmanuaddsub extends EssentialsCommand
|
||||
}
|
||||
final String player = args[0];
|
||||
final String group = args[1];
|
||||
ess.getServer().dispatchCommand(sender, "/permissions "+player+" parents add "+group+"");
|
||||
String command = "/permissions "+player+" parents add "+group;
|
||||
sender.sendMessage(commandLabel + " is deprecated. Use " + command + " instead.");
|
||||
ess.getServer().dispatchCommand(sender, command);
|
||||
}
|
||||
|
||||
|
||||
|
@ -22,7 +22,9 @@ public class Commandmanucheckp extends EssentialsCommand
|
||||
}
|
||||
final String player = args[0];
|
||||
final String perm = args[1];
|
||||
ess.getServer().dispatchCommand(sender, "/permissions "+player+" has "+perm+"");
|
||||
String command = "/permissions "+player+" has "+perm;
|
||||
sender.sendMessage(commandLabel + " is deprecated. Use " + command + " instead.");
|
||||
ess.getServer().dispatchCommand(sender, command);
|
||||
}
|
||||
|
||||
|
||||
|
@ -21,7 +21,9 @@ public class Commandmanudel extends EssentialsCommand
|
||||
throw new NotEnoughArgumentsException();
|
||||
}
|
||||
final String player = args[0];
|
||||
ess.getServer().dispatchCommand(sender, "/permissions "+player+" delete");
|
||||
String command = "/permissions "+player+" delete";
|
||||
sender.sendMessage(commandLabel + " is deprecated. Use " + command + " instead.");
|
||||
ess.getServer().dispatchCommand(sender, command);
|
||||
}
|
||||
|
||||
|
||||
|
@ -22,7 +22,9 @@ public class Commandmanudelp extends EssentialsCommand
|
||||
}
|
||||
final String player = args[0];
|
||||
final String perm = args[1];
|
||||
ess.getServer().dispatchCommand(sender, "/permissions "+player+" perms remove "+perm+"");
|
||||
String command = "/permissions "+player+" perms remove "+perm;
|
||||
sender.sendMessage(commandLabel + " is deprecated. Use " + command + " instead.");
|
||||
ess.getServer().dispatchCommand(sender, command);
|
||||
}
|
||||
|
||||
|
||||
|
@ -22,7 +22,9 @@ public class Commandmanudelsub extends EssentialsCommand
|
||||
}
|
||||
final String player = args[0];
|
||||
final String group = args[1];
|
||||
ess.getServer().dispatchCommand(sender, "/permissions "+player+" parents remove "+group+"");
|
||||
String command = "/permissions "+player+" parents remove "+group;
|
||||
sender.sendMessage(commandLabel + " is deprecated. Use " + command + " instead.");
|
||||
ess.getServer().dispatchCommand(sender, command);
|
||||
}
|
||||
|
||||
|
||||
|
@ -21,7 +21,9 @@ public class Commandmanulistp extends EssentialsCommand
|
||||
throw new NotEnoughArgumentsException();
|
||||
}
|
||||
final String player = args[0];
|
||||
ess.getServer().dispatchCommand(sender, "/permissions "+player+" perms list");
|
||||
String command = "/permissions "+player+" perms list";
|
||||
sender.sendMessage(commandLabel + " is deprecated. Use " + command + " instead.");
|
||||
ess.getServer().dispatchCommand(sender, command);
|
||||
}
|
||||
|
||||
|
||||
|
@ -103,7 +103,7 @@ commands:
|
||||
mangcheckv:
|
||||
description: Verify a value of a variable of group, and where it comes from.
|
||||
usage: /<command> <group> <variable>
|
||||
permission: groupmanager.mangckeckv
|
||||
permission: groupmanager.mangcheckv
|
||||
manwhois:
|
||||
description: Tell the group that user belongs.
|
||||
usage: /<command> <player>
|
||||
@ -163,4 +163,4 @@ commands:
|
||||
manclear:
|
||||
description: Clear world selection. Next commands will work on your world.
|
||||
usage: /<command>
|
||||
permission: groupmanager.manclear
|
||||
permission: groupmanager.manclear
|
||||
|
Loading…
Reference in New Issue
Block a user