mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-04-04 10:46:23 +02:00
30 lines
938 B
Java
30 lines
938 B
Java
package com.gmail.nossr50.spout.commands;
|
|
|
|
import org.bukkit.command.Command;
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
import com.gmail.nossr50.locale.LocaleLoader;
|
|
import com.gmail.nossr50.spout.huds.HudType;
|
|
|
|
public class MchudCommand extends SpoutCommand {
|
|
@Override
|
|
protected boolean noArguments(Command command, CommandSender sender, String[] args) {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
protected boolean oneArgument(Command command, CommandSender sender, String[] args) {
|
|
for (HudType hudType : HudType.values()) {
|
|
if (hudType.toString().equalsIgnoreCase(args[0])) {
|
|
playerProfile.setHudType(hudType);
|
|
spoutHud.initializeXpBar();
|
|
spoutHud.updateXpBar();
|
|
return true;
|
|
}
|
|
}
|
|
|
|
sender.sendMessage(LocaleLoader.getString("Commands.mchud.Invalid"));
|
|
return true;
|
|
}
|
|
}
|