bc-minecraft-molang 1.3.7 → 1.19.40-1
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.
|
@@ -186,7 +186,7 @@ var General;
|
|
|
186
186
|
id: "all",
|
|
187
187
|
documentation: "Requires at least 3 arguments. Evaluates the first argument, then returns 1.0 if all of the following arguments evaluate to the same value as the first. Otherwise it returns 0.0.",
|
|
188
188
|
parameters: [
|
|
189
|
-
{ id: "
|
|
189
|
+
{ id: "evaluate", documentation: "The value to evaluate" },
|
|
190
190
|
{ id: "first", documentation: "The first value to compare" },
|
|
191
191
|
{ id: "second", documentation: "The first value to compare" },
|
|
192
192
|
],
|
|
@@ -207,7 +207,7 @@ var General;
|
|
|
207
207
|
id: "any",
|
|
208
208
|
documentation: "Requires at least 3 arguments. Evaluates the first argument, then returns 1.0 if any of the following arguments evaluate to the same value as the first. Otherwise it returns 0.0.",
|
|
209
209
|
parameters: [
|
|
210
|
-
{ id: "
|
|
210
|
+
{ id: "evaluate", documentation: "The value to evaluate" },
|
|
211
211
|
{ id: "first", documentation: "The first value to compare" },
|
|
212
212
|
{ id: "second", documentation: "The first value to compare" },
|
|
213
213
|
],
|
|
@@ -498,7 +498,7 @@ var General;
|
|
|
498
498
|
id: "in_range",
|
|
499
499
|
documentation: "Requires 3 numerical arguments: some value, a minimum, and a maximum. If the first argument is between the minimum and maximum (inclusive), returns 1.0. Otherwise returns 0.0.",
|
|
500
500
|
parameters: [
|
|
501
|
-
{ id: "
|
|
501
|
+
{ id: "evaluate", documentation: "The value to evaluate" },
|
|
502
502
|
{
|
|
503
503
|
id: "minimum",
|
|
504
504
|
documentation: "The first value to compare, inclusive",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bc-minecraft-molang",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.19.40-1",
|
|
4
4
|
"description": "The library designed to deal with minecraft bedrock molang",
|
|
5
5
|
"main": "./lib/src/main.js",
|
|
6
6
|
"types": "./lib/src/main.d.ts",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
],
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@types/chai": "^4.3.3",
|
|
43
|
-
"@types/mocha": "^
|
|
43
|
+
"@types/mocha": "^10.0.0",
|
|
44
44
|
"@types/node": "^18.7.16",
|
|
45
45
|
"chai": "^4.3.6",
|
|
46
46
|
"mocha": "^10.0.0",
|