Added more stuff to the ignore list, closes #31

This commit is contained in:
Buuz135 2022-05-05 20:14:06 +02:00
parent cd1da8175a
commit 8d8eef61d0
2 changed files with 7 additions and 2 deletions

View File

@ -4,6 +4,10 @@
"minecraft:clay",
"minecraft:clay_ball",
"minecraft:glowstone",
"minecraft:glowstone_dust"
"minecraft:glowstone_dust",
"minecraft:melon",
"minecraft:melon_slice",
"minecraft:quartz",
"minecraft:quartz_block"
]
}

View File

@ -9,6 +9,7 @@ import net.minecraft.data.tags.TagsProvider;
import net.minecraft.resources.ResourceLocation;
import net.minecraft.tags.BlockTags;
import net.minecraft.world.item.Item;
import net.minecraft.world.item.ItemStack;
import net.minecraft.world.item.Items;
import net.minecraft.world.level.block.Block;
import net.minecraftforge.common.ForgeTier;
@ -35,6 +36,6 @@ public class FunctionalStorageItemTagsProvider extends ItemTagsProvider {
tTagAppender.add(blockRegistryObject.get().asItem());
}
}
this.tag(StorageTags.IGNORE_CRAFTING_CHECK).add(Items.CLAY).add(Items.CLAY_BALL).add(Items.GLOWSTONE).add(Items.GLOWSTONE_DUST);
this.tag(StorageTags.IGNORE_CRAFTING_CHECK).add(Items.CLAY).add(Items.CLAY_BALL).add(Items.GLOWSTONE).add(Items.GLOWSTONE_DUST).add(Items.MELON).add(Items.MELON_SLICE).add(Items.QUARTZ).add(Items.QUARTZ_BLOCK);
}
}