Skip to content

Commit

Permalink
wormhole
Browse files Browse the repository at this point in the history
  • Loading branch information
MuteTiefling committed Jul 12, 2023
1 parent 25ff80e commit 560c0b5
Show file tree
Hide file tree
Showing 2 changed files with 16 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 @@ -14,6 +14,7 @@
- Named Miniboss mobs will now drop affix loot [\#485](https://github.com/EnigmaticaModpacks/Enigmatica9/pull/485) ([MuteTiefling](https://github.com/MuteTiefling))
- Crimson Berries, Nightshade Berres, Sweetberries, Glowberries, Blueberries, and Torchberry Plants may now be purchased from the Market [\#485](https://github.com/EnigmaticaModpacks/Enigmatica9/pull/485) ([MuteTiefling](https://github.com/MuteTiefling))
- Farmers Delight recipes are now covered by Create Mixing. Don't overheat them or they'll burn! [\#487](https://github.com/EnigmaticaModpacks/Enigmatica9/pull/487) ([MuteTiefling](https://github.com/MuteTiefling))
- Stable Wormholes may now be reset in a crafting table [\#487](https://github.com/EnigmaticaModpacks/Enigmatica9/pull/487) ([MuteTiefling](https://github.com/MuteTiefling))

### 🐛 Fixed Bugs

Expand Down
15 changes: 15 additions & 0 deletions kubejs/server_scripts/base/recipes/occultism/shapeless.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
ServerEvents.recipes((event) => {
const id_prefix = 'enigmatica:base/occultism/shapeless/';

const recipes = [
{
output: 'occultism:stable_wormhole',
inputs: [Item.of('occultism:stable_wormhole', {}).weakNBT()],
id: `${id_prefix}stable_wormhole_reset`
}
];

recipes.forEach((recipe) => {
event.shapeless(recipe.output, recipe.inputs).id(recipe.id);
});
});

0 comments on commit 560c0b5

Please sign in to comment.