Fully fix the not being able to mine pool tiles thing
This commit is contained in:
parent
0a8459d7d0
commit
589e102891
9 changed files with 105 additions and 116 deletions
|
@ -93,7 +93,6 @@ public class DeprecatedModBlocks
|
|||
public static final RegistryObject<Block> ILUSIUM_BLOCK = registerDeprecated(BLOCKS.register("ilusium_block", ()->new DeprecatedBlock()));
|
||||
public static final RegistryObject<Block> CLEAR_GLASS_BLOCK = registerDeprecated(BLOCKS.register("clear_glass_block", ()-> new DeprecatedBlock()));
|
||||
public static final RegistryObject<Block> LIMINAL_TILES = registerDeprecated(BLOCKS.register("liminal_tiles", ()->new DeprecatedBlock()));
|
||||
public static final RegistryObject<Block> BLACK = registerDeprecated(BLOCKS.register("black", ()->new DeprecatedBlock()));
|
||||
public static final RegistryObject<Block> LIMINAL_TILE_STAIRS = registerDeprecated(BLOCKS.register("liminal_tile_stairs", ()-> new DeprecatedBlock()));
|
||||
public static final RegistryObject<Block> LIMINAL_TILE_SLAB = registerDeprecated(BLOCKS.register("liminal_tile_slab", ()-> new DeprecatedBlock()));
|
||||
public static final RegistryObject<Block> LIMINAL_WINDOW = registerDeprecated(BLOCKS.register("liminal_window", ()->new DeprecatedBlock()));
|
||||
|
|
|
@ -37,7 +37,6 @@ public class ModDeprecatedBlockLootTablesProvider extends BlockLootSubProvider
|
|||
dropSelf(DeprecatedModBlocks.ILUSIUM_BLOCK.get());
|
||||
dropSelf(DeprecatedModBlocks.CLEAR_GLASS_BLOCK.get());
|
||||
dropSelf(DeprecatedModBlocks.LIMINAL_TILES.get());
|
||||
dropSelf(DeprecatedModBlocks.BLACK.get());
|
||||
dropSelf(DeprecatedModBlocks.LIMINAL_TILE_STAIRS.get());
|
||||
dropSelf(DeprecatedModBlocks.LIMINAL_TILE_SLAB.get());
|
||||
dropSelf(DeprecatedModBlocks.LIMINAL_WINDOW.get());
|
||||
|
|
Reference in a new issue