Skip to content

Commit

Permalink
added missing recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
Azagwen committed Jun 17, 2021
1 parent 8b2e4ae commit d7338a8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -206,10 +206,12 @@ private static AtbywRecipe[] createStonecutterColoredRecipes(Identifier recipeId
public static AtbywRecipe SILVERFISH_STATUE_FROM_STONECUTTING = createStonecutterRecipe(NewAtbywID("silverfish_statue_stonecutting"), getBlockID(Blocks.STONE), getBlockID(StatueRegistry.SILVERFISH_STATUE), 1);
public static AtbywRecipe ENDERMITE_STATUE_FROM_STONECUTTING = createStonecutterRecipe(NewAtbywID("endermite_statue_stonecutting"), getBlockID(Blocks.STONE), getBlockID(StatueRegistry.ENDERMITE_STATUE), 1);
public static AtbywRecipe WOLF_STATUE_FROM_STONECUTTING = createStonecutterRecipe(NewAtbywID("wolf_statue_stonecutting"), getBlockID(Blocks.STONE), getBlockID(StatueRegistry.WOLF_STATUE), 1);
public static AtbywRecipe AXOLOTL_STATUE_FROM_STONECUTTING = createStonecutterRecipe(NewAtbywID("axolotl_statue_stonecutting"), getBlockID(Blocks.STONE), getBlockID(StatueRegistry.AXOLOTL_STATUE), 1);
public static AtbywRecipe CAT_STATUE_FROM_STONECUTTING = createStonecutterRecipe(NewAtbywID("cat_statue_stonecutting"), getBlockID(Blocks.STONE), getBlockID(StatueRegistry.CAT_STATUE), 1);
public static AtbywRecipe FOX_STATUE_FROM_STONECUTTING = createStonecutterRecipe(NewAtbywID("fox_statue_stonecutting"), getBlockID(Blocks.STONE), getBlockID(StatueRegistry.FOX_STATUE), 1);

public static AtbywRecipe AXOLOTL_STATUE_FROM_STONECUTTING = createStonecutterRecipe(NewAtbywID("axolotl_statue_stonecutting"), getBlockID(Blocks.STONE), getBlockID(StatueRegistry.AXOLOTL_STATUE), 1);
public static AtbywRecipe BAT_STATUE_FROM_STONECUTTING = createStonecutterRecipe(NewAtbywID("bat_statue_stonecutting"), getBlockID(Blocks.STONE), getBlockID(StatueRegistry.BAT_STATUE), 1);

public static AtbywRecipe ROOTED_DIRT_STAIRS_FROM_STONECUTTING = createStonecutterRecipe(NewAtbywID("rooted_dirt_stairs_stonecutting"), getBlockID(Blocks.ROOTED_DIRT), getBlockID(AtbywBlocks.ROOTED_DIRT_STAIRS), 1);
public static AtbywRecipe ROOTED_DIRT_SLAB_FROM_STONECUTTING = createStonecutterRecipe(NewAtbywID("rooted_dirt_slab_stonecutting"), getBlockID(Blocks.ROOTED_DIRT), getBlockID(AtbywBlocks.ROOTED_DIRT_SLAB), 2);

Expand Down Expand Up @@ -377,10 +379,12 @@ public static void inject(Map<Identifier, JsonElement> map) {
putRecipe(SILVERFISH_STATUE_FROM_STONECUTTING, map);
putRecipe(ENDERMITE_STATUE_FROM_STONECUTTING, map);
putRecipe(WOLF_STATUE_FROM_STONECUTTING, map);
putRecipe(AXOLOTL_STATUE_FROM_STONECUTTING, map);
putRecipe(CAT_STATUE_FROM_STONECUTTING, map);
putRecipe(FOX_STATUE_FROM_STONECUTTING, map);

putRecipe(AXOLOTL_STATUE_FROM_STONECUTTING, map);
putRecipe(BAT_STATUE_FROM_STONECUTTING, map);

putRecipe(ROOTED_DIRT_STAIRS_FROM_STONECUTTING, map);
putRecipe(ROOTED_DIRT_SLAB_FROM_STONECUTTING, map);

Expand Down
3 changes: 2 additions & 1 deletion src/main/resources/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
- Changed ladder variants recipes to use planks instead of sticks
- Changed statue and essence recipes to be less expensive
- Statues have been rearranged in the creative inventory to be in alphabetical order
- Statue waxing now works like copper waxing

###Removed items
###Removed
- Removed all stick variants except for Bamboo
- Removed Bee essence
- Removed Silverfish essence
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Changes
- Statues have been rearranged in the creative inventory to be in alphabetical order
- Statue waxing now works like copper waxing

Removed items
Removed
- Removed all stick variants except for Bamboo
- Removed Bee essence
- Removed Silverfish essence
Expand Down

0 comments on commit d7338a8

Please sign in to comment.