Skip to content

Commit

Permalink
Add unification for zinc plates
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremiahwinsley committed Dec 13, 2021
1 parent 9e349b1 commit 2394bd8
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
14 changes: 12 additions & 2 deletions changelog/1.8.15.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
- cloth-config-4.13.49-forge.jar
- CodeChickenLib-1.16.5-4.0.5.438-universal.jar
- cofh_core-1.16.5-1.4.0.6.jar
- constructionwand-1.16.5-2.5.jar
- constructionwand-1.16.5-2.6.jar
- enderchests-1.16-1.7.9.jar
- endertanks-1.16-1.9.7.jar
- ensorcellation-1.16.5-1.4.0.1.jar
- FramedBlocks-2.11.2.jar
- ftb-library-forge-1605.3.4-build.90.jar
Expand All @@ -24,12 +26,16 @@
- JustEnoughResources-1.16.5-0.12.1.133.jar
- kubejs-forge-1605.3.19-build.229.jar
- kubejs-thermal-1605.1.4-build.3.jar
- mahoutsukai-1.16.5-v1.33.5.jar
- lootr-1.16.5-0.0.9.30.jar
- mahoutsukai-1.16.5-v1.33.6.jar
- mana-and-artifice-1.5.1.1.jar
- Mantle-1.16.5-1.6.147.jar
- mcjtylib-1.16-5.1.2.jar
- MysticalAgradditions-1.16.5-4.2.4.jar
- MysticalAgriculture-1.16.5-4.2.6.jar
- MysticalCustomization-1.16.5-2.1.7.jar
- omgourd-1.16.5-1.4.0.1.jar
- repurposed_structures_forge-3.4.7+1.16.5.jar
- restrictions-1.16-3.0.5.jar
- rftoolsbase-1.16-2.1.1.jar
- rftoolsbuilder-1.16-3.1.4.jar
Expand All @@ -38,16 +44,20 @@
- rftoolspower-1.16-3.0.11.jar
- rftoolsstorage-1.16-2.0.15.jar
- rftoolsutility-1.16-3.1.6.jar
- simplemagnets-1.1.3-mc1.16.jar
- simplylight-1.16.5-1.4.0-build.24.jar
- sophisticatedbackpacks-1.16.5-3.12.2.432.jar
- TConstruct-1.16.5-3.3.0.308.jar
- thermal_cultivation-1.16.5-1.4.1.3.jar
- thermal_expansion-1.16.5-1.4.1.3.jar
- thermal_foundation-1.16.5-1.4.1.7.jar
- thermal_innovation-1.16.5-1.4.1.3.jar
- thermal_locomotion-1.16.5-1.4.1.2.jar
- tinyredstone-1.16.5-1.13.0.jar
- ToastControl-1.16.5-4.4.0.jar
- topaddons-1.16.5-2.2.0-beta.jar
- upgrade_aquatic-1.16.5-3.1.2.jar
- xnet-1.16-3.0.15.jar
### Other Changes
- Final quest now requires 1x instead of 9x ATM Star Block - 100% completion should now be possible.
- Add unification for zinc plates
4 changes: 3 additions & 1 deletion kubejs/server_scripts/unify.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ onEvent('recipes', e => {
e.shapeless(result, [`#forge:ingots/${material}`, '#misctags:immersive_engineering_hammer']).id(`kubejs:crafting/plate_${material}_hammering`);

e.remove({ id: `create:pressing/${material}_ingot` })
e.remove({ id: `createaddition:pressing/${material}_ingot` })
e.recipes.create.pressing(result, `#forge:ingots/${material}`).id(`kubejs:pressing/${material}_ingot`)

if (coolingTime !== null) {
Expand Down Expand Up @@ -210,7 +211,8 @@ onEvent('recipes', e => {
['signalum', null],
['lumium', null],
['enderium', null],
['brass', 57, 'create:brass_sheet']
['brass', 57, 'create:brass_sheet'],
['zinc', 57, 'createaddition:zinc_sheet'],
])
// #endregion Plate Unification
// #region Tinkers Unification
Expand Down

0 comments on commit 2394bd8

Please sign in to comment.