mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-13 04:36:44 +00:00
50 lines
No EOL
1.5 KiB
Java
50 lines
No EOL
1.5 KiB
Java
package com.earth2me.essentials.commands;
|
|
|
|
import static com.earth2me.essentials.I18n._;
|
|
import com.earth2me.essentials.User;
|
|
import java.util.Locale;
|
|
import org.bukkit.Server;
|
|
import org.bukkit.inventory.ItemStack;
|
|
|
|
|
|
public class Commandmore extends EssentialsCommand
|
|
{
|
|
public Commandmore()
|
|
{
|
|
super("more");
|
|
}
|
|
|
|
@Override
|
|
public void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception
|
|
{
|
|
final ItemStack stack = user.getItemInHand();
|
|
if (stack == null)
|
|
{
|
|
throw new Exception(_("cantSpawnItem", "Air"));
|
|
}
|
|
if (stack.getAmount() >= ((user.isAuthorized("essentials.oversizedstacks"))
|
|
? ess.getSettings().getOversizedStackSize() : stack.getMaxStackSize()))
|
|
{
|
|
throw new Exception(_("fullStack"));
|
|
}
|
|
final String itemname = stack.getType().toString().toLowerCase(Locale.ENGLISH).replace("_", "");
|
|
if (ess.getSettings().permissionBasedItemSpawn()
|
|
? (!user.isAuthorized("essentials.itemspawn.item-all")
|
|
&& !user.isAuthorized("essentials.itemspawn.item-" + itemname)
|
|
&& !user.isAuthorized("essentials.itemspawn.item-" + stack.getTypeId()))
|
|
: (!user.isAuthorized("essentials.itemspawn.exempt")
|
|
&& !user.canSpawnItem(stack.getTypeId())))
|
|
{
|
|
throw new Exception(_("cantSpawnItem", itemname));
|
|
}
|
|
if (user.isAuthorized("essentials.oversizedstacks"))
|
|
{
|
|
stack.setAmount(ess.getSettings().getOversizedStackSize());
|
|
}
|
|
else
|
|
{
|
|
stack.setAmount(stack.getMaxStackSize());
|
|
}
|
|
user.updateInventory();
|
|
}
|
|
} |