50 lines
1.4 KiB
Java
50 lines
1.4 KiB
Java
package com.pahimar.ee3.command;
|
|
|
|
import net.minecraft.command.ICommandSender;
|
|
import net.minecraft.command.WrongUsageException;
|
|
import net.minecraft.util.ChatMessageComponent;
|
|
|
|
import com.pahimar.ee3.core.helper.VersionHelper;
|
|
import com.pahimar.ee3.lib.Commands;
|
|
|
|
/**
|
|
* Equivalent-Exchange-3
|
|
*
|
|
* CommandVersion
|
|
*
|
|
* @author pahimar
|
|
* @license Lesser GNU Public License v3 (http://www.gnu.org/licenses/lgpl.html)
|
|
*
|
|
*/
|
|
public class CommandVersion {
|
|
|
|
public static void processCommand(ICommandSender commandSender, String[] args) {
|
|
|
|
String subCommand;
|
|
|
|
if (args.length > 0) {
|
|
subCommand = args[0];
|
|
|
|
if (subCommand.toLowerCase().equals(Commands.COMMAND_VERSION)) {
|
|
processVersionCommand(commandSender);
|
|
}
|
|
else if (subCommand.toLowerCase().equals(Commands.COMMAND_CHANGELOG)) {
|
|
processChangelogCommand(commandSender);
|
|
}
|
|
else
|
|
throw new WrongUsageException(Commands.COMMAND_VERSION_USAGE, new Object[0]);
|
|
}
|
|
else
|
|
throw new WrongUsageException(Commands.COMMAND_VERSION_USAGE, new Object[0]);
|
|
}
|
|
|
|
private static void processVersionCommand(ICommandSender commandSender) {
|
|
|
|
commandSender.sendChatToPlayer(ChatMessageComponent.createFromTranslationKey(VersionHelper.getResultMessage()));
|
|
}
|
|
|
|
private static void processChangelogCommand(ICommandSender commandSender) {
|
|
|
|
}
|
|
|
|
}
|