Allow overriding the head item name

This commit is contained in:
zontreck 2024-01-02 19:45:51 -07:00
parent 8f550510a6
commit 0e50bb031d

View file

@ -20,7 +20,7 @@ public class GetHead {
private static int getHead(CommandSourceStack source, String string) {
try {
ServerPlayer player= source.getPlayerOrException();
ItemStack head = HeadUtilities.get(string);
ItemStack head = HeadUtilities.get(string, "");
player.addItem(head);
} catch (CommandSyntaxException e) {