Skip to content

Commit

Permalink
Merge pull request #519 from MuteTiefling/develop
Browse files Browse the repository at this point in the history
source gem stonecutting
  • Loading branch information
MuteTiefling authored Jul 21, 2023
2 parents 5158d6e + d8eaaa7 commit fc7dcb1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions changelogs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
- Add many items to Mekanism's Painting system [\#494](https://github.com/EnigmaticaModpacks/Enigmatica9/pull/494) ([MuteTiefling](https://github.com/MuteTiefling))
- Apotheosis bosses largely reverted to new defaults. Remaining bosses brought more in line with the new balancing. [\#495](https://github.com/EnigmaticaModpacks/Enigmatica9/pull/495) ([MuteTiefling](https://github.com/MuteTiefling))
- Apotheosis gems that were previously modified have been rebalanced to closer match the new defaults. [\#496](https://github.com/EnigmaticaModpacks/Enigmatica9/pull/496) ([MuteTiefling](https://github.com/MuteTiefling))
- Source Gem Blocks may now be stonecut between types. [\#519](https://github.com/EnigmaticaModpacks/Enigmatica9/pull/519) ([MuteTiefling](https://github.com/MuteTiefling))

### 🐛 Fixed Bugs

Expand Down
10 changes: 10 additions & 0 deletions kubejs/server_scripts/base/recipes/minecraft/stonecutting.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,16 @@ ServerEvents.recipes((event) => {
output: 'quark:limestone',
input: 'create:limestone',
id: `${id_prefix}create_to_quark_limestone`
},
{
output: 'emendatusenigmatica:source_block',
input: 'ars_nouveau:source_gem_block',
id: `${id_prefix}ars_nouveau_to_emendatusenigmatica_source_gem_block`
},
{
output: 'ars_nouveau:source_gem_block',
input: 'emendatusenigmatica:source_block',
id: `${id_prefix}emendatusenigmatica_to_ars_nouveau_source_gem_block`
}
];

Expand Down

0 comments on commit fc7dcb1

Please sign in to comment.