Skip to content

Commit

Permalink
Removed Jade Compat
Browse files Browse the repository at this point in the history
  • Loading branch information
KekeCreations committed Jan 4, 2024
1 parent aca4ded commit f79f7bd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package com.uraneptus.sullysmod.common.blocks;

import net.minecraft.world.level.block.Block;

public class AmberBlock extends Block {
public AmberBlock(Properties pProperties) {
super(pProperties);
}
}
10 changes: 0 additions & 10 deletions src/main/java/com/uraneptus/sullysmod/core/registry/SMBlocks.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,16 +49,6 @@ public class SMBlocks {
public static final RegistryObject<Block> POLISHED_JADE_SHINGLE_SLAB = HELPER.createBlock("polished_jade_shingle_slab", () -> new SlabBlock(SMProperties.Blocks.POLISHED_JADE_BLOCKS));
public static final RegistryObject<Block> POLISHED_JADE_TILE_SLAB = HELPER.createBlock("polished_jade_tile_slab", () -> new SlabBlock(SMProperties.Blocks.POLISHED_JADE_BLOCKS));

//Jade Vertical Slabs
/*
public static final RegistryObject<Block> ROUGH_JADE_BRICK_VERTICAL_SLAB = HELPER.createCompatBlock("quark", "rough_jade_brick_vertical_slab", () -> new VerticalSlabBlock(SMProperties.Blocks.ROUGH_JADE_BLOCKS)); //CreativeModeTab.TAB_BUILDING_BLOCKS
public static final RegistryObject<Block> SMOOTHED_ROUGH_JADE_VERTICAL_SLAB = HELPER.createCompatBlock("quark", "smoothed_rough_jade_vertical_slab", () -> new VerticalSlabBlock(SMProperties.Blocks.ROUGH_JADE_BLOCKS)); //CreativeModeTab.TAB_BUILDING_BLOCKS
public static final RegistryObject<Block> ROUGH_JADE_TILE_VERTICAL_SLAB = HELPER.createCompatBlock("quark", "rough_jade_tile_vertical_slab", () -> new VerticalSlabBlock(SMProperties.Blocks.ROUGH_JADE_BLOCKS)); //CreativeModeTab.TAB_BUILDING_BLOCKS
public static final RegistryObject<Block> POLISHED_JADE_BRICK_VERTICAL_SLAB = HELPER.createCompatBlock("quark", "polished_jade_brick_vertical_slab", () -> new VerticalSlabBlock(SMProperties.Blocks.POLISHED_JADE_BLOCKS)); //CreativeModeTab.TAB_BUILDING_BLOCKS
public static final RegistryObject<Block> POLISHED_SMALL_JADE_BRICK_VERTICAL_SLAB = HELPER.createCompatBlock("quark", "polished_small_jade_brick_vertical_slab", () -> new VerticalSlabBlock(SMProperties.Blocks.POLISHED_JADE_BLOCKS)); //CreativeModeTab.TAB_BUILDING_BLOCKS
public static final RegistryObject<Block> POLISHED_JADE_SHINGLE_VERTICAL_SLAB = HELPER.createCompatBlock("quark", "polished_jade_shingle_vertical_slab", () -> new VerticalSlabBlock(SMProperties.Blocks.POLISHED_JADE_BLOCKS)); //CreativeModeTab.TAB_BUILDING_BLOCKS
public static final RegistryObject<Block> POLISHED_JADE_TILE_VERTICAL_SLAB = HELPER.createCompatBlock("quark", "polished_jade_tile_vertical_slab", () -> new VerticalSlabBlock(SMProperties.Blocks.POLISHED_JADE_BLOCKS)); //CreativeModeTab.TAB_BUILDING_BLOCKS
*/

//Copper Buttons
public static final RegistryObject<Block> COPPER_BUTTON = HELPER.createBlock("copper_button", () -> new WeatheringCopperButtonBlock(SMProperties.Blocks.COPPER_BUTTONS, BlockSetType.STONE, 10, true, WeatheringCopper.WeatherState.UNAFFECTED));
Expand Down

0 comments on commit f79f7bd

Please sign in to comment.