Bulb fixes & recipe

This commit is contained in:
paulevsGitch 2020-11-27 00:05:26 +03:00
parent c3ab9d26f3
commit 5d27c8df9a
2 changed files with 3 additions and 1 deletions

View file

@ -9,6 +9,7 @@ import net.minecraft.item.ItemStack;
import net.minecraft.loot.context.LootContext;
import ru.betterend.blocks.BlockProperties.TripleShape;
import ru.betterend.blocks.basis.BlockVine;
import ru.betterend.registry.EndBlocks;
import ru.betterend.registry.EndItems;
import ru.betterend.util.MHelper;
@ -23,7 +24,7 @@ public class BlockBulbVine extends BlockVine {
return Lists.newArrayList(new ItemStack(EndItems.GLOWING_BULB));
}
else if (MHelper.RANDOM.nextInt(8) == 0) {
return Lists.newArrayList(new ItemStack(EndItems.GLOWING_BULB));
return Lists.newArrayList(new ItemStack(EndBlocks.BULB_VINE_SEED));
}
else {
return Lists.newArrayList();