Work more on migrations to 1.21

This commit is contained in:
zontreck 2025-02-23 01:02:03 -07:00
parent 922f89d14c
commit ddc7fa9952
16 changed files with 480 additions and 212 deletions

View file

@ -2,14 +2,13 @@ package com.zontreck.block;
import net.minecraft.world.level.block.Block;
import net.minecraft.world.level.block.Blocks;
import net.minecraft.world.level.block.state.BlockBehaviour;
@Deprecated
public class DeprecatedBlock extends Block
{
public DeprecatedBlock(){
super(BlockBehaviour.Properties.copy(Blocks.STONE).instabreak());
super(BlockBehaviour.Properties.of().instabreak());
}
}