mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 20:29:20 +00:00
40 lines
936 B
Java
40 lines
936 B
Java
package com.earth2me.essentials.commands;
|
|
|
|
import com.earth2me.essentials.User;
|
|
import org.bukkit.Server;
|
|
import org.bukkit.inventory.Inventory;
|
|
|
|
|
|
public class Commandinvsee extends EssentialsCommand
|
|
{
|
|
public Commandinvsee()
|
|
{
|
|
super("invsee");
|
|
}
|
|
|
|
//This method has a hidden param, which if given will display the equip slots. #easteregg
|
|
|
|
@Override
|
|
protected void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception
|
|
{
|
|
if (args.length < 1)
|
|
{
|
|
throw new NotEnoughArgumentsException();
|
|
}
|
|
|
|
final User invUser = getPlayer(server, user, args, 0);
|
|
Inventory inv;
|
|
|
|
if (args.length > 1 && user.isAuthorized("essentials.invsee.equip"))
|
|
{
|
|
inv = server.createInventory(invUser, 9, "Equipped");
|
|
inv.setContents(invUser.getInventory().getArmorContents());
|
|
}
|
|
else
|
|
{
|
|
inv = invUser.getInventory();
|
|
}
|
|
user.openInventory(inv);
|
|
user.setInvSee(true);
|
|
}
|
|
}
|