Ignore blank inscription tools

This commit is contained in:
Nicholas Ignoffo 2018-02-18 15:56:03 -08:00
parent 64336f6f78
commit 37c8012741
2 changed files with 4 additions and 0 deletions

View file

@ -42,6 +42,9 @@ public class ItemInscriptionTool extends ItemEnum.Variant<EnumRuneType> implemen
return;
for (EnumRuneType runeType : types) {
if (runeType == EnumRuneType.BLANK)
continue;
ItemStack stack = new ItemStack(this, 1, runeType.ordinal());
NBTTagCompound tag = new NBTTagCompound();
tag.setInteger(Constants.NBT.USES, 10);

View file

@ -6,6 +6,7 @@
},
"variants": {
"type": {
"blank": { },
"water": {
"textures": {
"layer0": "bloodmagic:items/WaterScribeTool"