Fully fix the not being able to mine pool tiles thing

This commit is contained in:
Zontreck 2024-02-22 17:38:15 -07:00
parent 0a8459d7d0
commit 589e102891
9 changed files with 105 additions and 116 deletions

View file

@ -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()));

View file

@ -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());