Skip to content

Commit

Permalink
Merge pull request #915 from MuteTiefling/develop
Browse files Browse the repository at this point in the history
Fix Stripped Logs/Wood tags
  • Loading branch information
MuteTiefling authored Mar 28, 2024
2 parents d9b076a + 676c5a4 commit 6601b07
Show file tree
Hide file tree
Showing 3 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 @@ -15,6 +15,7 @@
- Correct quest description for bookwyrm familiars [\#912](https://github.com/EnigmaticaModpacks/Enigmatica9/issues/912)
- Fixed an issue with Gateways crashing the game if used in a Compact Machine [\#912](https://github.com/EnigmaticaModpacks/Enigmatica9/issues/912)
- [Expert] Mekanism tanks may no longer be upgraded in world [\#912](https://github.com/EnigmaticaModpacks/Enigmatica9/issues/912)
- Fix missing stripped log/wood tags [\#915](https://github.com/EnigmaticaModpacks/Enigmatica9/issues/915)

### Enigmatica 9 v1.20.1

Expand Down
3 changes: 3 additions & 0 deletions kubejs/server_scripts/base/tags/items/forge/stripped_logs.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
ServerEvents.tags('item', (event) => {
event.add('forge:stripped_logs', [/log_stripped/, /stripped_.*_(log|stem|pedu)/]);
});
7 changes: 7 additions & 0 deletions kubejs/server_scripts/base/tags/items/forge/stripped_wood.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
ServerEvents.tags('item', (event) => {
event.add('forge:stripped_wood', [
/wood_stripped/,
/stripped_.*_(wood|hyphae)/,
'ars_elemental:stripped_yellow_archwood'
]);
});

0 comments on commit 6601b07

Please sign in to comment.