Move the deprecated blocks to their own class
This commit is contained in:
parent
70a68dd25d
commit
1ae36591df
7 changed files with 58 additions and 35 deletions
|
@ -0,0 +1,11 @@
|
|||
package dev.zontreck.otemod.blocks;
|
||||
|
||||
import net.minecraft.world.level.block.Block;
|
||||
import net.minecraft.world.level.block.state.BlockBehaviour;
|
||||
|
||||
public class DeprecatedBlock extends Block
|
||||
{
|
||||
public DeprecatedBlock(){
|
||||
super(BlockBehaviour.Properties.of().instabreak());
|
||||
}
|
||||
}
|
Reference in a new issue