mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-06-27 09:41:23 +00:00

Co-Authored-By: md678685 <1917406+md678685@users.noreply.github.com> Basically cleans up a bunch of warnings that are easily suppressed.
35 lines
1.2 KiB
Java
35 lines
1.2 KiB
Java
package com.earth2me.essentials.commands;
|
|
|
|
import com.earth2me.essentials.User;
|
|
import com.earth2me.essentials.utils.FormatUtil;
|
|
import org.bukkit.Server;
|
|
import org.bukkit.inventory.ItemStack;
|
|
import org.bukkit.inventory.meta.ItemMeta;
|
|
|
|
import java.util.Locale;
|
|
|
|
import static com.earth2me.essentials.I18n.tl;
|
|
|
|
public class Commanditemname extends EssentialsCommand {
|
|
|
|
public Commanditemname() {
|
|
super("itemname");
|
|
}
|
|
|
|
@Override
|
|
protected void run(Server server, User user, String commandLabel, String[] args) throws Exception {
|
|
ItemStack item = user.getBase().getItemInHand();
|
|
if (item.getType().name().contains("AIR")) {
|
|
user.sendMessage(tl("itemnameInvalidItem", item.getType().toString().toLowerCase(Locale.ENGLISH).replace('_', ' ')));
|
|
return;
|
|
}
|
|
|
|
String name = FormatUtil.formatString(user, "essentials.itemname", getFinalArg(args, 0)).trim();
|
|
if (name.isEmpty()) name = null;
|
|
|
|
ItemMeta im = item.getItemMeta();
|
|
im.setDisplayName(name);
|
|
item.setItemMeta(im);
|
|
user.sendMessage(name == null ? tl("itemnameClear") : tl("itemnameSuccess", name));
|
|
}
|
|
}
|