Skip to content

Commit

Permalink
Restore special compacting rules
Browse files Browse the repository at this point in the history
  • Loading branch information
jaquadro committed Sep 17, 2019
1 parent 5bd92f9 commit 2d3059d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ private void setup (final FMLCommonSetupEvent event) {
DistExecutor.runWhenOn(Dist.CLIENT, () -> () -> ModContainers.registerScreens());

compRegistry = new CompTierRegistry();
compRegistry.initialize();

//oreDictRegistry = new OreDictRegistry();
//renderRegistry = new RenderRegistry();
//wailaRegistry = new WailaRegistry();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ public void initialize () {

if (CommonConfig.GENERAL.enableExtraCompactingRules.get()) {
register(new ItemStack(Blocks.CLAY), new ItemStack(Items.CLAY_BALL), 4);
register(new ItemStack(Blocks.SNOW), new ItemStack(Items.SNOWBALL), 4);
register(new ItemStack(Blocks.SNOW_BLOCK), new ItemStack(Items.SNOWBALL), 4);
register(new ItemStack(Blocks.GLOWSTONE), new ItemStack(Items.GLOWSTONE_DUST), 4);
register(new ItemStack(Blocks.BRICKS), new ItemStack(Items.BRICK), 4);
register(new ItemStack(Blocks.NETHER_BRICKS), new ItemStack(Items.NETHER_BRICK), 4);
register(new ItemStack(Blocks.NETHER_WART_BLOCK), new ItemStack(Items.NETHER_WART), 9);
register(new ItemStack(Blocks.QUARTZ_BLOCK), new ItemStack(Items.QUARTZ), 4);
register(new ItemStack(Blocks.MELON), new ItemStack(Items.MELON), 9);
register(new ItemStack(Blocks.MELON), new ItemStack(Items.MELON_SLICE), 9);

if (!ModList.get().isLoaded("extrautilities")) {
register(new ItemStack(Blocks.SANDSTONE), new ItemStack(Blocks.SAND), 4);
Expand Down

0 comments on commit 2d3059d

Please sign in to comment.