Fixed ore drops
This commit is contained in:
parent
ab0293c7e9
commit
5bbb48b3e2
15 changed files with 478 additions and 546 deletions
|
@ -24,7 +24,9 @@
|
|||
|
||||
package techreborn.init;
|
||||
|
||||
import net.fabricmc.fabric.api.block.FabricBlockSettings;
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.block.Material;
|
||||
import net.minecraft.entity.EntityType;
|
||||
import net.minecraft.item.Item;
|
||||
import net.minecraft.item.ItemConvertible;
|
||||
|
@ -323,7 +325,7 @@ public class TRContent {
|
|||
|
||||
Ores(int veinSize, int veinsPerChunk, int minY, int maxY) {
|
||||
name = this.toString().toLowerCase();
|
||||
block = new BlockOre();
|
||||
block = new Block(FabricBlockSettings.of(Material.STONE).strength(2f, 2f).build());
|
||||
this.veinSize = veinSize;
|
||||
this.veinsPerChunk = veinsPerChunk;
|
||||
this.minY = minY;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue