added spawn of sulfor for lava hoarder

This commit is contained in:
Jottyfan
2026-01-01 22:29:55 +01:00
parent 410f2fed12
commit 4dcd8641dc

View File

@@ -12,7 +12,6 @@ import net.minecraft.world.InteractionHand;
import net.minecraft.world.InteractionResult;
import net.minecraft.world.entity.item.ItemEntity;
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.item.Item;
import net.minecraft.world.item.ItemStack;
import net.minecraft.world.item.Items;
import net.minecraft.world.level.Level;
@@ -59,8 +58,8 @@ public class Lavahoarder extends Block {
stack = new ItemStack(Items.LAPIS_LAZULI);
} else if (which < 8) {
stack = new ItemStack(QuicklyItems.RAWTURQUOISE);
// } else if (which < 9) {
// stack = new ItemStack(QuicklyItems.SULFOR);
} else if (which < 9) {
stack = new ItemStack(QuicklyItems.SULFOR);
}
if (stack != null) {
level.addFreshEntity(new ItemEntity(level, pos.getX(), pos.getY(), pos.getZ(), stack));