From 005b3ccc8a5661c803685b2054a601a680a57996 Mon Sep 17 00:00:00 2001 From: Mrbysco Date: Wed, 16 Oct 2024 22:12:30 +0200 Subject: [PATCH] Remove Black Quartz Ore loot TEMP --- .../de/ellpeck/actuallyadditions/data/LootTableGenerator.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/main/java/de/ellpeck/actuallyadditions/data/LootTableGenerator.java b/src/main/java/de/ellpeck/actuallyadditions/data/LootTableGenerator.java index e9ad445c2..50753eaa1 100644 --- a/src/main/java/de/ellpeck/actuallyadditions/data/LootTableGenerator.java +++ b/src/main/java/de/ellpeck/actuallyadditions/data/LootTableGenerator.java @@ -200,12 +200,8 @@ public class LootTableGenerator extends LootTableProvider { dropSelf(ActuallyBlocks.VOID_CRYSTAL_CLUSTER.get()); dropSelf(ActuallyBlocks.EMERADIC_CRYSTAL_CLUSTER.get()); - //TODO temp - dropSelf(ActuallyBlocks.BLACK_QUARTZ_ORE.get()); add(ActuallyBlocks.BLACK_QUARTZ_ORE.get(), createOreDrop(ActuallyBlocks.BLACK_QUARTZ_ORE.getBlock(), ActuallyItems.BLACK_QUARTZ.get())); - //this.add(ActuallyBlocks.BLACK_QUARTZ_ORE.get(), ore -> droppingItemWithFortune(ore, ActuallyItems.BLACK_QUARTZ.get())); - addCrop(ActuallyBlocks.CANOLA, ActuallyItems.CANOLA, ActuallyItems.CANOLA_SEEDS); addCrop(ActuallyBlocks.RICE, ActuallyItems.RICE, ActuallyItems.RICE_SEEDS); addCrop(ActuallyBlocks.FLAX, () -> Items.STRING, ActuallyItems.FLAX_SEEDS);