Shorten arguments

setloginmessage -> setlogin
loginmessage -> loginmsg
This commit is contained in:
Eva 2022-03-22 20:48:01 +00:00 committed by GitHub
parent afce2a9713
commit fafbda40cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,14 +10,14 @@ import org.bukkit.entity.Player;
import java.util.UUID;
@CommandPermissions(level = AdminLevel.SUPER, source = SourceType.ONLY_IN_GAME)
@CommandParameters(description = "Manages your admin login message and other utilities.", usage = "/<command> <clear <variable> | setloginmessage <message>>")
@CommandParameters(description = "Manages your admin login message and other various utilities.", usage = "/<command> <clear <variable> | setlogin <message>>")
public class Command_myadmin extends FreedomCommand {
@Override
public boolean run(CommandSender sender, Player sender_p, Command cmd, String commandLabel, String[] args, boolean senderIsConsole) {
final UUID uuid = sender_p.getUniqueId(); // Get the sender's uuid as a variable.
if (args.length >= 2) {
if ("setloginmessage".equalsIgnoreCase(args[0])) {
if ("setlogin".equalsIgnoreCase(args[0])) {
final String inputMessage = StringUtils.join(args, " ", 1, args.length); // Parse the input provided.
final UUID uuid = sender_p.getUniqueId(); // Get the sender's uuid as a variable.
playerMsg(ChatColor.GRAY + "Set your custom login message."); // Notify player that the login message has been set.
@ -27,9 +27,7 @@ public class Command_myadmin extends FreedomCommand {
AdminList.updateIndexLists(); // Update and refresh configuration.
return true;
} else if ("clear".equalsIgnoreCase(args[0])) {
if("loginmessage".equals(args[1])) {
final UUID uuid = sender_p.getUniqueId(); // Get the sender's uuid as a variable.
if("loginmsg".equalsIgnoreCase(args[1])) {
playerMsg(ChatColor.GRAY + "Cleared your custom login message."); // Notify player that the login message has been set.
AdminList.getEntry(uuid).setCustomLoginMessage(""); // Set the custom login message to the value.
@ -38,9 +36,9 @@ public class Command_myadmin extends FreedomCommand {
AdminList.updateIndexLists(); // Update and refresh configuration.
return true;
} else {
return false;
playerMsg(ChatColor.GRAY + "Invalid option, options are: loginmsg.");
return true;
}
} else {
return false;
}