flewkey
/
mc.2a03.party
Archived
1
0
Fork 0
This repository has been archived on 2020-06-15. You can view files and clone it, but cannot push or open issues or pull requests.
mc.2a03.party/src/party/_2a03/mc/command/HeadCommand.java

36 lines
1.7 KiB
Java

package party._2a03.mc.command;
import com.mojang.brigadier.CommandDispatcher;
import com.mojang.brigadier.arguments.StringArgumentType;
import net.minecraft.block.Blocks;
import net.minecraft.command.Commands;
import net.minecraft.command.CommandSource;
import net.minecraft.entity.item.ItemEntity;
import net.minecraft.entity.player.ServerPlayerEntity;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.CompoundNBT;
import net.minecraft.util.text.TranslationTextComponent;
public class HeadCommand {
public static void register(CommandDispatcher<CommandSource> dispatcher) {
dispatcher.register(Commands.func_197057_a("head").executes((source) -> {
return giveHead(source.getSource(), source.getSource().func_197035_h(), source.getSource().func_197037_c());
}).then(Commands.func_197056_a("username", StringArgumentType.greedyString()).executes((source) -> {
return giveHead(source.getSource(), source.getSource().func_197035_h(), StringArgumentType.getString(source, "username"));
})));
}
private static int giveHead(CommandSource source, ServerPlayerEntity serverplayerentity, String skullowner) {
ItemStack itemstack = new ItemStack(Blocks.field_196710_eS.func_199767_j());
CompoundNBT compoundnbt = new CompoundNBT();
compoundnbt.func_74778_a("SkullOwner", skullowner);
itemstack.func_77982_d(compoundnbt);
ItemEntity itementity = serverplayerentity.func_71019_a(itemstack, false);
itementity.func_174868_q();
itementity.func_200217_b(serverplayerentity.func_110124_au());
source.func_197030_a(new TranslationTextComponent("Player head has been given"), false);
return 1;
}
}