Skip to content

Commit

Permalink
Fix Poise Post
Browse files Browse the repository at this point in the history
  • Loading branch information
bageldotjpg committed Feb 26, 2021
1 parent 2ca03a7 commit d52360b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public final class EEBlocks {
public static final RegistryObject<Block> POISE_BEEHIVE = HELPER.createCompatBlock("buzzier_bees", "poise_beehive", () -> new AbnormalsBeehiveBlock(Properties.from(Blocks.BEEHIVE)), ItemGroup.DECORATIONS);
public static final RegistryObject<Block> STRIPPED_POISE_POST = HELPER.createCompatFuelBlock("quark", "stripped_poise_post", () -> new WoodPostBlock(EEProperties.POISE_WOOD), 300, ItemGroup.BUILDING_BLOCKS);
public static final RegistryObject<Block> POISE_POST = HELPER.createCompatFuelBlock("quark", "poise_post", () -> new WoodPostBlock(STRIPPED_POISE_POST, EEProperties.POISE_WOOD), 300, ItemGroup.BUILDING_BLOCKS);
public static final RegistryObject<Block> GLOWING_POISE_POST = HELPER.createCompatFuelBlock("quark", "glowing_poise_post", () -> new WoodPostBlock(EEProperties.POISE_LOG_GLOWING), 300, ItemGroup.BUILDING_BLOCKS);
public static final RegistryObject<Block> GLOWING_POISE_POST = HELPER.createCompatFuelBlock("quark", "glowing_poise_post", () -> new WoodPostBlock(STRIPPED_POISE_POST, EEProperties.POISE_LOG_GLOWING), 300, ItemGroup.BUILDING_BLOCKS);
public static final RegistryObject<Block> POISE_HEDGE = HELPER.createCompatFuelBlock("quark", "poise_hedge", () -> new HedgeBlock(EEProperties.POISE_WOOD), 300, ItemGroup.DECORATIONS);
public static final Pair<RegistryObject<AbnormalsStandingSignBlock>, RegistryObject<AbnormalsWallSignBlock>> POISE_SIGN = HELPER.createSignBlock("poise", MaterialColor.PURPLE_TERRACOTTA);
public static final Pair<RegistryObject<AbnormalsChestBlock>, RegistryObject<AbnormalsTrappedChestBlock>> POISE_CHEST = HELPER.createCompatChestBlocks("poise", MaterialColor.PURPLE_TERRACOTTA);
Expand Down

0 comments on commit d52360b

Please sign in to comment.