@minecraft/server 2.7.0-rc.1.26.30-preview.25 → 2.7.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 +0 -2
- package/index.d.ts +0 -6
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,8 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
Contains many types related to manipulating a Minecraft world, including entities, blocks, dimensions, and more.
|
|
4
4
|
|
|
5
|
-
## **NOTE: This version of this module is still in pre-release. It may change or it may be removed in future releases.**
|
|
6
|
-
|
|
7
5
|
See full documentation for this module here:
|
|
8
6
|
|
|
9
7
|
https://learn.microsoft.com/en-us/minecraft/creator/scriptapi/minecraft/server/minecraft-server
|
package/index.d.ts
CHANGED
|
@@ -7,7 +7,6 @@
|
|
|
7
7
|
Copyright (c) Microsoft Corporation.
|
|
8
8
|
***************************************************************************** */
|
|
9
9
|
/**
|
|
10
|
-
* @preview
|
|
11
10
|
* @packageDocumentation
|
|
12
11
|
* Contains many types related to manipulating a Minecraft
|
|
13
12
|
* world, including entities, blocks, dimensions, and more.
|
|
@@ -3666,14 +3665,12 @@ export class BiomeType {
|
|
|
3666
3665
|
*/
|
|
3667
3666
|
readonly id: string;
|
|
3668
3667
|
/**
|
|
3669
|
-
* @rc
|
|
3670
3668
|
* @remarks
|
|
3671
3669
|
* Returns a list of the biome's tags.
|
|
3672
3670
|
*
|
|
3673
3671
|
*/
|
|
3674
3672
|
getTags(): string[];
|
|
3675
3673
|
/**
|
|
3676
|
-
* @rc
|
|
3677
3674
|
* @remarks
|
|
3678
3675
|
* Checks if the biome has all of the provided tags.
|
|
3679
3676
|
*
|
|
@@ -3684,7 +3681,6 @@ export class BiomeType {
|
|
|
3684
3681
|
}
|
|
3685
3682
|
|
|
3686
3683
|
/**
|
|
3687
|
-
* @rc
|
|
3688
3684
|
* Supports a catalog of available biome types registered
|
|
3689
3685
|
* within Minecraft.
|
|
3690
3686
|
*/
|
|
@@ -8415,7 +8411,6 @@ export class Entity {
|
|
|
8415
8411
|
*/
|
|
8416
8412
|
addEffect(effectType: EffectType | string, duration: number, options?: EntityEffectOptions): Effect | undefined;
|
|
8417
8413
|
/**
|
|
8418
|
-
* @rc
|
|
8419
8414
|
* @remarks
|
|
8420
8415
|
* Adds an item to the entity's inventory.
|
|
8421
8416
|
*
|
|
@@ -24102,7 +24097,6 @@ export class InvalidContainerSlotError extends Error {
|
|
|
24102
24097
|
}
|
|
24103
24098
|
|
|
24104
24099
|
/**
|
|
24105
|
-
* @rc
|
|
24106
24100
|
* This error can occur when accessing components on an entity
|
|
24107
24101
|
* that doesn't have them.
|
|
24108
24102
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@minecraft/server",
|
|
3
|
-
"version": "2.7.0
|
|
3
|
+
"version": "2.7.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"contributors": [
|
|
6
6
|
{
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
],
|
|
15
15
|
"peerDependencies": {
|
|
16
16
|
"@minecraft/common": "^1.2.0",
|
|
17
|
-
"@minecraft/vanilla-data": ">=1.20.70
|
|
17
|
+
"@minecraft/vanilla-data": ">=1.20.70"
|
|
18
18
|
},
|
|
19
19
|
"license": "MIT"
|
|
20
20
|
}
|