mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2025-07-01 12:36:41 +00:00
Forgot class paths, remove things lombok covers, and optimize imports
This commit is contained in:
@ -1,5 +1,7 @@
|
||||
package me.totalfreedom.totalfreedommod.command;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import me.totalfreedom.totalfreedommod.rank.Rank;
|
||||
import me.totalfreedom.totalfreedommod.util.FUtil;
|
||||
import net.minecraft.server.v1_13_R1.NBTTagCompound;
|
||||
@ -17,8 +19,6 @@ import org.bukkit.inventory.ItemStack;
|
||||
import org.bukkit.inventory.meta.ItemMeta;
|
||||
import org.bukkit.inventory.meta.PotionMeta;
|
||||
import org.bukkit.potion.PotionEffectType;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
@CommandPermissions(level = Rank.OP, source = SourceType.ONLY_IN_GAME)
|
||||
@CommandParameters(description = "Modify the current item in your hand", usage = "/<command> <name <message> | lore <message> | enchant <enchantment> <level> | potion <effect> <duration> <amplifier> | attribute <name> <amount> | clear>", aliases = "mi")
|
||||
@ -139,7 +139,7 @@ public class Command_modifyitem extends FreedomCommand
|
||||
msg("The amplifier specified is not a valid integer.");
|
||||
return true;
|
||||
}
|
||||
PotionMeta potionMeta = (PotionMeta) meta;
|
||||
PotionMeta potionMeta = (PotionMeta)meta;
|
||||
potionMeta.addCustomEffect(type.createEffect(duration, amplifier), true);
|
||||
item.setItemMeta(potionMeta);
|
||||
break;
|
||||
|
Reference in New Issue
Block a user