zen-flow 17.0.0 → 17.1.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/dist/zenflow.d.ts CHANGED
@@ -32,6 +32,7 @@ type Shaped = Partial<{
32
32
  square: string;
33
33
  center: string;
34
34
  fill: string;
35
+ cross: string;
35
36
  }>;
36
37
  declare const COLOR: {
37
38
  readonly black: "§0";
package/dist/zenflow.js CHANGED
@@ -33,15 +33,15 @@ const shaped = (recipe2) => {
33
33
  };
34
34
  const matrix = [[
35
35
  f(recipe2.fill, recipe2.square, recipe2.ring, recipe2.corner, recipe2[1]),
36
- f(recipe2.fill, recipe2.square, recipe2.ring, recipe2.edge, recipe2[2]),
36
+ f(recipe2.fill, recipe2.square, recipe2.ring, recipe2.cross, recipe2.edge, recipe2[2]),
37
37
  f(recipe2.fill, recipe2.ring, recipe2.corner, recipe2[3])
38
38
  ], [
39
- f(recipe2.fill, recipe2.square, recipe2.ring, recipe2.edge, recipe2[4]),
40
- f(recipe2.fill, recipe2.square, recipe2.center, recipe2[5]),
41
- f(recipe2.fill, recipe2.ring, recipe2.edge, recipe2[6])
39
+ f(recipe2.fill, recipe2.square, recipe2.ring, recipe2.cross, recipe2.edge, recipe2[4]),
40
+ f(recipe2.fill, recipe2.square, recipe2.cross, recipe2.center, recipe2[5]),
41
+ f(recipe2.fill, recipe2.ring, recipe2.cross, recipe2.edge, recipe2[6])
42
42
  ], [
43
43
  f(recipe2.fill, recipe2.ring, recipe2.corner, recipe2[7]),
44
- f(recipe2.fill, recipe2.ring, recipe2.edge, recipe2[8]),
44
+ f(recipe2.fill, recipe2.ring, recipe2.cross, recipe2.edge, recipe2[8]),
45
45
  f(recipe2.fill, recipe2.ring, recipe2.corner, recipe2[9])
46
46
  ]];
47
47
  if (matrix[0][2] === null && matrix[1][2] === null && matrix[2].every((x) => x === null)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zen-flow",
3
- "version": "17.0.0",
3
+ "version": "17.1.0",
4
4
  "description": "MineTweaker ZenScript made easy.",
5
5
  "type": "module",
6
6
  "exports": {