mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-04-03 02:06:23 +02:00
46 lines
1.1 KiB
Java
46 lines
1.1 KiB
Java
package com.gmail.nossr50.party.commands;
|
|
|
|
public enum PartySubcommand {
|
|
JOIN,
|
|
ACCEPT,
|
|
CREATE,
|
|
HELP,
|
|
INFO,
|
|
QUIT,
|
|
EXPSHARE,
|
|
ITEMSHARE,
|
|
INVITE,
|
|
KICK,
|
|
DISBAND,
|
|
OWNER,
|
|
LOCK,
|
|
UNLOCK,
|
|
PASSWORD,
|
|
RENAME,
|
|
TELEPORT,
|
|
CHAT;
|
|
|
|
public static PartySubcommand getSubcommand(String commandName) {
|
|
for (PartySubcommand command : values()) {
|
|
if (command.name().equalsIgnoreCase(commandName)) {
|
|
return command;
|
|
}
|
|
}
|
|
|
|
if (commandName.equalsIgnoreCase("?")) {
|
|
return HELP;
|
|
}
|
|
else if (commandName.equalsIgnoreCase("q") || commandName.equalsIgnoreCase("leave")) {
|
|
return QUIT;
|
|
}
|
|
else if (commandName.equalsIgnoreCase("xpshare") || commandName.equalsIgnoreCase("shareexp") || commandName.equalsIgnoreCase("sharexp")) {
|
|
return EXPSHARE;
|
|
}
|
|
else if (commandName.equalsIgnoreCase("shareitem") || commandName.equalsIgnoreCase("shareitems")) {
|
|
return ITEMSHARE;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|