zen-flow 14.1.0 → 16.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -34,6 +34,7 @@ npm i zen-flow -D
34
34
  - Forestry
35
35
  - MineFactory Reloaded
36
36
  - NEI
37
+ - Thaumcraft 4
37
38
  - Thermal Expansion
38
39
  - Tinkers' Construct
39
40
 
@@ -49,12 +50,9 @@ import { add, remove, hide } from 'zen-flow';
49
50
  * [null, null, null]
50
51
  * ]);
51
52
  **/
52
- add({
53
- input: {
54
- 1: '<minecraft:leather>', 2: '<minecraft:leather>', 3: '<minecraft:leather>',
55
- 4: '<ore:ingotIron', 5: '<minecraft:string>', 6: '<ore:ingotIron>'
56
- },
57
- output: '<minecraft:saddle>'
53
+ add('<minecraft:saddle>')({
54
+ 1: '<minecraft:leather>', 2: '<minecraft:leather>', 3: '<minecraft:leather>',
55
+ 4: '<ore:ingotIron', 5: '<minecraft:string>', 6: '<ore:ingotIron>'
58
56
  });
59
57
 
60
58
  /**
@@ -64,10 +62,7 @@ add({
64
62
  * [null, <minecraft:leather>, null]
65
63
  * ]);
66
64
  **/
67
- add({
68
- input: { edge: '<minecraft:leather>' },
69
- output: '<minecraft:saddle>'
70
- });
65
+ add('<minecraft:saddle>')({ edge: '<minecraft:leather>'});
71
66
 
72
67
  // Remove & hide Extra Utility generators
73
68