Skip to content

Commit

Permalink
Changed xp amount when polishing rough jade blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
ManaStar committed Aug 17, 2022
1 parent cf73165 commit fc04ef8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/generated/resources/.cache/cache
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ be1d6ea07303bf2d5c7ee2f4508ccb3c4f3becb2 data/sullysmod/recipes/grindstone_polis
884e9acb9e249430671690984b2454144cb72634 data/sullysmod/recipes/grindstone_polishing/polished_granite_from_grindstone_polishing.json
f41cb4ba6db19501d2c5c299fe1ffb01dab53779 data/sullysmod/recipes/grindstone_polishing/polished_granite_slab_from_grindstone_polishing.json
5399a0464daadb76cdddba93ae56829b769794e8 data/sullysmod/recipes/grindstone_polishing/polished_granite_stairs_from_grindstone_polishing.json
b45a74146653a97f4f392dccea73ae9548835f7e data/sullysmod/recipes/grindstone_polishing/polished_jade_block_from_grindstone_polishing.json
fbc3b1fcd3cddda438c8b5776354f8397477aa58 data/sullysmod/recipes/grindstone_polishing/polished_jade_block_from_grindstone_polishing.json
7e0e1ad2776c3e8fe313e468e6e3ca82e16040ae data/sullysmod/recipes/grindstone_polishing/polished_jade_brick_slab_from_grindstone_polishing.json
dcdbaf9aad1435bbddadcb9b7af4f972eb324ec0 data/sullysmod/recipes/grindstone_polishing/polished_jade_brick_stairs_from_grindstone_polishing.json
1a88fdc1031030cc0335e8e48c642eda81fcdb9b data/sullysmod/recipes/grindstone_polishing/polished_jade_bricks_from_grindstone_polishing.json
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"ingredient": "sullysmod:rough_jade_block",
"result": "sullysmod:polished_jade_block",
"resultCount": 1,
"experience": 0
"experience": 9
}
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ protected void buildCraftingRecipes(Consumer<FinishedRecipe> consumer) {

//Grindstone Polishing
grindstonePolishingRecipes(SMItems.ROUGH_JADE.get(), SMItems.POLISHED_JADE.get(), 1, 1, consumer);
grindstonePolishingRecipes(SMBlocks.ROUGH_JADE_BLOCK.get(), SMBlocks.POLISHED_JADE_BLOCK.get(), 1, 0, consumer);
grindstonePolishingRecipes(SMBlocks.ROUGH_JADE_BLOCK.get(), SMBlocks.POLISHED_JADE_BLOCK.get(), 1, 9, consumer);
grindstonePolishingRecipes(SMBlocks.ROUGH_JADE_BRICKS.get(), SMBlocks.POLISHED_JADE_BRICKS.get(), 1, 0, consumer);
grindstonePolishingRecipes(SMBlocks.ROUGH_JADE_BRICK_SLAB.get(), SMBlocks.POLISHED_JADE_BRICK_SLAB.get(), 1, 0, consumer);
grindstonePolishingRecipes(SMBlocks.ROUGH_JADE_BRICK_STAIRS.get(), SMBlocks.POLISHED_JADE_BRICK_STAIRS.get(), 1, 0, consumer);
Expand Down

0 comments on commit fc04ef8

Please sign in to comment.