minecraft-data 3.9.0 → 3.10.2
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/.github/workflows/ci.yml +1 -6
- package/.github/workflows/md-release.yml +5 -4
- package/.github/workflows/npm-publish.yml +1 -2
- package/.github/workflows/trigger.yml +2 -2
- package/README.md +14 -15
- package/data.js +22 -1
- package/doc/api.md +460 -167
- package/doc/history.md +410 -176
- package/index.d.ts +152 -125
- package/lib/indexes.js +0 -2
- package/lib/loader.js +1 -2
- package/minecraft-data/README.md +1 -1
- package/minecraft-data/data/bedrock/1.16.201/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.16.201/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.16.210/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.16.210/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.16.220/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.16.220/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.17.0/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.17.0/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.17.10/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.17.10/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.17.30/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.17.30/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.17.40/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.17.40/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.18.0/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.18.0/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.18.11/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.18.11/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.18.30/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.18.30/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.19.1/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.19.1/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.19.10/proto.yml +3680 -0
- package/minecraft-data/data/bedrock/1.19.10/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.19.10/types.yml +1955 -0
- package/minecraft-data/data/bedrock/1.19.20/protocol.json +10644 -0
- package/minecraft-data/data/bedrock/1.19.20/version.json +6 -0
- package/minecraft-data/data/bedrock/common/protocolVersions.json +6 -0
- package/minecraft-data/data/bedrock/common/versions.json +2 -1
- package/minecraft-data/data/bedrock/latest/proto.yml +55 -7
- package/minecraft-data/data/bedrock/latest/types.yml +7 -0
- package/minecraft-data/data/dataPaths.json +22 -1
- package/minecraft-data/data/pc/1.19/protocol.json +1 -5
- package/minecraft-data/data/pc/1.7/protocol.json +1 -1
- package/minecraft-data/data/pc/1.8/protocol.json +1 -1
- package/minecraft-data/data/pc/15w40b/protocol.json +1 -1
- package/minecraft-data/data/pc/common/protocolVersions.json +35 -0
- package/minecraft-data/doc/history.md +14 -0
- package/package.json +1 -1
- package/typings/generate-typings.js +22 -14
- package/typings/index-template.d.ts +160 -133
- package/typings/test-typings.ts +24 -29
package/index.d.ts
CHANGED
|
@@ -872,176 +872,203 @@ declare namespace MinecraftData {
|
|
|
872
872
|
id: number;
|
|
873
873
|
}[];
|
|
874
874
|
}
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
type: 'pc' | 'bedrock'
|
|
875
|
+
export interface Version {
|
|
876
|
+
// Returns true if the current version is greater than or equal to the `other` version's dataVersion
|
|
877
|
+
['>='](other: string): boolean
|
|
878
|
+
// Returns true if the current version is greater than the `other` version's dataVersion
|
|
879
|
+
['>'](other: string): boolean
|
|
880
|
+
// Returns true if the current version is less than the `other` version's dataVersion
|
|
881
|
+
['<'](other: string): boolean
|
|
882
|
+
// Returns true if the current version is less than than or equal to the `other` version's dataVersion
|
|
883
|
+
['<='](other: string): boolean
|
|
884
|
+
// Returns true if the current version is equal to the `other` version's dataVersion
|
|
885
|
+
['=='](other: string): boolean
|
|
886
|
+
type: 'pc' | 'bedrock'
|
|
888
887
|
}
|
|
889
888
|
|
|
890
889
|
export interface VersionSet {
|
|
891
|
-
|
|
892
|
-
|
|
890
|
+
pc: { [version: string]: Version }
|
|
891
|
+
bedrock: { [version: string]: Version }
|
|
893
892
|
}
|
|
894
893
|
|
|
895
894
|
export interface SupportedVersions {
|
|
896
|
-
|
|
897
|
-
|
|
895
|
+
pc: string[]
|
|
896
|
+
bedrock: string[]
|
|
898
897
|
}
|
|
899
898
|
|
|
900
899
|
export interface Schemas {
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
900
|
+
biomes: object
|
|
901
|
+
blocks: object
|
|
902
|
+
effects: object
|
|
903
|
+
entities: object
|
|
904
|
+
instruments: object
|
|
905
|
+
items: object
|
|
906
|
+
materials: object
|
|
907
|
+
protocol: object
|
|
908
|
+
protocolVersions: object
|
|
909
|
+
recipes: object
|
|
910
|
+
version: object
|
|
911
|
+
windows: object
|
|
912
|
+
foods: object
|
|
913
|
+
blockLoot: object
|
|
914
|
+
entityLoot: object
|
|
916
915
|
}
|
|
917
916
|
|
|
918
917
|
export interface LoginPacket {
|
|
919
|
-
|
|
918
|
+
entityId: number
|
|
920
919
|
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
920
|
+
/**
|
|
921
|
+
* introduced in Minecraft 1.16.2
|
|
922
|
+
*/
|
|
923
|
+
isHardcore?: boolean
|
|
925
924
|
|
|
926
|
-
|
|
925
|
+
gameMode: number
|
|
927
926
|
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
927
|
+
/**
|
|
928
|
+
* Introduced in Minecraft 1.17
|
|
929
|
+
*/
|
|
930
|
+
previousGameMode?: number
|
|
931
|
+
/**
|
|
932
|
+
* Introduced in Minecraft 1.17
|
|
933
|
+
*/
|
|
934
|
+
worldNames?: string[]
|
|
935
|
+
/**
|
|
936
|
+
* Introduced in Minecraft 1.17
|
|
937
|
+
*/
|
|
938
|
+
dimensionCodec?: object
|
|
940
939
|
|
|
941
|
-
|
|
940
|
+
dimension: object
|
|
942
941
|
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
942
|
+
/**
|
|
943
|
+
* Introduced in Minecraft 1.17
|
|
944
|
+
*/
|
|
945
|
+
worldName?: string
|
|
947
946
|
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
947
|
+
hashedSeed: number
|
|
948
|
+
maxPlayers: number
|
|
949
|
+
viewDistance: number
|
|
951
950
|
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
951
|
+
/**
|
|
952
|
+
* Introduced in Minecraft 1.18
|
|
953
|
+
*/
|
|
954
|
+
simulationDistance?: number
|
|
956
955
|
|
|
957
|
-
|
|
958
|
-
|
|
956
|
+
reducedDebugInfo: boolean
|
|
957
|
+
enableRespawnScreen: boolean
|
|
959
958
|
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
959
|
+
/**
|
|
960
|
+
* Introduced in Minecraft 1.17
|
|
961
|
+
*/
|
|
962
|
+
isDebug?: boolean
|
|
963
|
+
/**
|
|
964
|
+
* Introduced in Minecraft 1.17
|
|
965
|
+
*/
|
|
966
|
+
isFlat?: boolean
|
|
968
967
|
}
|
|
969
968
|
|
|
970
969
|
export interface IndexedData {
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
970
|
+
isOlderThan(version: string): boolean
|
|
971
|
+
isNewerOrEqualTo(version: string): boolean
|
|
972
|
+
|
|
973
|
+
blocks: { [id: number]: Block }
|
|
974
|
+
blocksByName: { [name: string]: Block }
|
|
975
|
+
blocksByStateId: { [id: number]: Block }
|
|
976
|
+
blocksArray: Block[]
|
|
977
|
+
/**
|
|
978
|
+
* Bedrock edition only
|
|
979
|
+
*/
|
|
980
|
+
blockStates?: { name: string; states: object; version: number }[]
|
|
981
|
+
blockCollisionShapes: { blocks: { [name: string]: number[] }; shapes: { [id: number]: [number[]] } }
|
|
976
982
|
|
|
977
|
-
|
|
983
|
+
loginPacket: LoginPacket
|
|
978
984
|
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
985
|
+
items: { [id: number]: Item }
|
|
986
|
+
itemsByName: { [name: string]: Item }
|
|
987
|
+
itemsArray: Item[]
|
|
982
988
|
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
foodsByFoodPoints: { [foodPoints: number]: Food; };
|
|
987
|
-
foodsBySaturation: { [saturation: number]: Food; };
|
|
989
|
+
foods: { [id: number]: Food }
|
|
990
|
+
foodsByName: { [name: string]: Food }
|
|
991
|
+
foodsArray: Food[]
|
|
988
992
|
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
993
|
+
biomes: { [id: number]: Biome }
|
|
994
|
+
biomesArray: Biome[]
|
|
995
|
+
biomesByName: { [name: string]: Biome }
|
|
992
996
|
|
|
993
|
-
|
|
997
|
+
recipes: { [id: number]: Recipe[] }
|
|
994
998
|
|
|
995
|
-
|
|
996
|
-
|
|
999
|
+
instruments: { [id: number]: Instrument }
|
|
1000
|
+
instrumentsArray: Instrument[]
|
|
997
1001
|
|
|
998
|
-
|
|
1002
|
+
materials: { [name: string]: Material }
|
|
999
1003
|
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
+
mobs: { [id: number]: Entity }
|
|
1005
|
+
objects: { [id: number]: Entity }
|
|
1006
|
+
entities: { [id: number]: Entity }
|
|
1007
|
+
entitiesByName: { [name: string]: Entity }
|
|
1008
|
+
entitiesArray: Entity[]
|
|
1004
1009
|
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1010
|
+
enchantments: { [id: number]: Enchantment }
|
|
1011
|
+
enchantmentsByName: { [name: string]: Enchantment }
|
|
1012
|
+
enchantmentsArray: Enchantment[]
|
|
1008
1013
|
|
|
1009
|
-
|
|
1010
|
-
|
|
1014
|
+
/**
|
|
1015
|
+
* Bedrock edition only
|
|
1016
|
+
*/
|
|
1017
|
+
defaultSkin?: object
|
|
1018
|
+
|
|
1019
|
+
protocol: object
|
|
1020
|
+
protocolComments: object
|
|
1021
|
+
/**
|
|
1022
|
+
* Bedrock edition only
|
|
1023
|
+
*/
|
|
1024
|
+
protocolYaml?: string[]
|
|
1025
|
+
|
|
1026
|
+
windows: { [id: string]: Window }
|
|
1027
|
+
windowsByName: { [name: string]: Window }
|
|
1028
|
+
windowsArray: Window[]
|
|
1011
1029
|
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1030
|
+
effects: { [id: number]: Effect }
|
|
1031
|
+
effectsByName: { [name: string]: Effect }
|
|
1032
|
+
effectsArray: Effect[]
|
|
1015
1033
|
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1034
|
+
particles: { [id: number]: Particle }
|
|
1035
|
+
particlesByName: { [name: string]: Particle }
|
|
1036
|
+
particlesArray: Particle[]
|
|
1019
1037
|
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1038
|
+
attributes: { [resource: string]: string }
|
|
1039
|
+
attributesByName: { [name: string]: string }
|
|
1040
|
+
attributesArray: []
|
|
1023
1041
|
|
|
1024
|
-
|
|
1042
|
+
commands: {}
|
|
1025
1043
|
|
|
1026
|
-
|
|
1044
|
+
version: Version
|
|
1027
1045
|
|
|
1028
|
-
|
|
1046
|
+
type: 'pc' | 'bedrock'
|
|
1029
1047
|
|
|
1030
|
-
|
|
1031
|
-
blockLootByName: { [name: string]: BlockLoot; };
|
|
1048
|
+
language: { [key: string]: string }
|
|
1032
1049
|
|
|
1033
|
-
|
|
1034
|
-
|
|
1050
|
+
blockLoot: { [id: number]: BlockLoot }
|
|
1051
|
+
blockLootByName: { [name: string]: BlockLoot }
|
|
1052
|
+
|
|
1053
|
+
entityLoot: { [id: number]: EntityLoot }
|
|
1054
|
+
entityLootByName: { [name: string]: EntityLoot }
|
|
1055
|
+
|
|
1056
|
+
mapIcons: { [id: number]: MapIcon }
|
|
1057
|
+
mapIconsByName: { [name: string]: MapIcon }
|
|
1058
|
+
mapIconsArray: MapIcon[]
|
|
1059
|
+
|
|
1060
|
+
tints: Tints
|
|
1035
1061
|
}
|
|
1036
1062
|
|
|
1037
1063
|
const versions: {
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
const versionsByMinecraftVersion: VersionSet
|
|
1041
|
-
const preNettyVersionsByProtocolVersion: VersionSet
|
|
1042
|
-
const postNettyVersionsByProtocolVersion: VersionSet
|
|
1043
|
-
const supportedVersions: SupportedVersions
|
|
1044
|
-
const
|
|
1064
|
+
[key in keyof SupportedVersions]: Version[]
|
|
1065
|
+
}
|
|
1066
|
+
const versionsByMinecraftVersion: VersionSet
|
|
1067
|
+
const preNettyVersionsByProtocolVersion: VersionSet
|
|
1068
|
+
const postNettyVersionsByProtocolVersion: VersionSet
|
|
1069
|
+
const supportedVersions: SupportedVersions
|
|
1070
|
+
const legacy: { pc: { blocks: { [id: string]: string } } }
|
|
1071
|
+
const schemas: Schemas
|
|
1045
1072
|
|
|
1046
1073
|
}
|
|
1047
1074
|
|
package/lib/indexes.js
CHANGED
|
@@ -37,8 +37,6 @@ module.exports = function (mcData) {
|
|
|
37
37
|
|
|
38
38
|
foodsById: indexer.buildIndexFromArray(mcData.foods, 'id'),
|
|
39
39
|
foodsByName: indexer.buildIndexFromArray(mcData.foods, 'name'),
|
|
40
|
-
foodsByFoodPoints: indexer.buildIndexFromArray(mcData.foods, 'foodPoints'),
|
|
41
|
-
foodsBySaturation: indexer.buildIndexFromArray(mcData.foods, 'saturation'),
|
|
42
40
|
|
|
43
41
|
windowsById: indexer.buildIndexFromArray(mcData.windows, 'id'),
|
|
44
42
|
windowsByName: indexer.buildIndexFromArray(mcData.windows, 'name'),
|
package/lib/loader.js
CHANGED
|
@@ -22,8 +22,6 @@ function mcDataToNode (mcData) {
|
|
|
22
22
|
|
|
23
23
|
foods: indexes.foodsById,
|
|
24
24
|
foodsByName: indexes.foodsByName,
|
|
25
|
-
foodsByFoodPoints: indexes.foodsByFoodPoints,
|
|
26
|
-
foodsBySaturation: indexes.foodsBySaturation,
|
|
27
25
|
foodsArray: mcData.foods,
|
|
28
26
|
|
|
29
27
|
recipes: mcData.recipes,
|
|
@@ -39,6 +37,7 @@ function mcDataToNode (mcData) {
|
|
|
39
37
|
|
|
40
38
|
mobs: indexes.mobsById,
|
|
41
39
|
objects: indexes.objectsById,
|
|
40
|
+
entities: indexes.entitiesById,
|
|
42
41
|
entitiesByName: indexes.entitiesByName,
|
|
43
42
|
entitiesArray: mcData.entities,
|
|
44
43
|
|
package/minecraft-data/README.md
CHANGED
|
@@ -10,7 +10,7 @@ Language independent module providing minecraft data for minecraft clients, serv
|
|
|
10
10
|
Supports
|
|
11
11
|
* Minecraft PC version 0.30c (classic), 1.7.10, 1.8.8, 1.9 (15w40b, 1.9, 1.9.1-pre2, 1.9.2, 1.9.4),
|
|
12
12
|
1.10 (16w20a, 1.10-pre1, 1.10, 1.10.1, 1.10.2), 1.11 (16w35a, 1.11, 1.11.2), 1.12 (17w15a, 17w18b, 1.12-pre4, 1.12, 1.12.1, 1.12.2), 1.13 (17w50a, 1.13, 1.13.1, 1.13.2-pre1, 1.13.2-pre2, 1.13.2), 1.14 (1.14, 1.14.1, 1.14.3, 1.14.4), 1.15 (1.15, 1.15.1, 1.15.2), 1.16 (20w13b, 20w14a, 1.16-rc1, 1.16, 1.16.1, 1.16.2, 1.16.3, 1.16.4, 1.16.5), 1.17, 1.17.1, 1.18 (1.18, 1.18.1, 1.18.2), 1.19
|
|
13
|
-
* Minecraft bedrock version 0.14, 0.15, 1.0, 1.16.201, 1.16.210, 1.16.220, 1.17.0, 1.17.10, 1.17.30, 1.17.40, 1.18.0, 1.18.11, 1.18.30, 1.19.1, 1.19.10
|
|
13
|
+
* Minecraft bedrock version 0.14, 0.15, 1.0, 1.16.201, 1.16.210, 1.16.220, 1.17.0, 1.17.10, 1.17.30, 1.17.40, 1.18.0, 1.18.11, 1.18.30, 1.19.1, 1.19.10, 1.19.20
|
|
14
14
|
|
|
15
15
|
## Wrappers
|
|
16
16
|
|
|
@@ -849,7 +849,7 @@ packet_set_entity_data:
|
|
|
849
849
|
!bound: both
|
|
850
850
|
runtime_entity_id: varint64
|
|
851
851
|
metadata: MetadataDictionary
|
|
852
|
-
tick:
|
|
852
|
+
tick: varint64
|
|
853
853
|
|
|
854
854
|
# SetActorMotion is sent by the server to change the client-side velocity of an entity. It is usually used
|
|
855
855
|
# in combination with server-side movement calculation.
|
|
@@ -878,7 +878,7 @@ packet_set_entity_data:
|
|
|
878
878
|
!bound: both
|
|
879
879
|
runtime_entity_id: varint64
|
|
880
880
|
metadata: MetadataDictionary
|
|
881
|
-
tick:
|
|
881
|
+
tick: varint64
|
|
882
882
|
|
|
883
883
|
# SetActorMotion is sent by the server to change the client-side velocity of an entity. It is usually used
|
|
884
884
|
# in combination with server-side movement calculation.
|
|
@@ -879,7 +879,7 @@ packet_set_entity_data:
|
|
|
879
879
|
!bound: both
|
|
880
880
|
runtime_entity_id: varint64
|
|
881
881
|
metadata: MetadataDictionary
|
|
882
|
-
tick:
|
|
882
|
+
tick: varint64
|
|
883
883
|
|
|
884
884
|
# SetActorMotion is sent by the server to change the client-side velocity of an entity. It is usually used
|
|
885
885
|
# in combination with server-side movement calculation.
|
|
@@ -962,7 +962,7 @@ packet_set_entity_data:
|
|
|
962
962
|
!bound: both
|
|
963
963
|
runtime_entity_id: varint64
|
|
964
964
|
metadata: MetadataDictionary
|
|
965
|
-
tick:
|
|
965
|
+
tick: varint64
|
|
966
966
|
|
|
967
967
|
# SetActorMotion is sent by the server to change the client-side velocity of an entity. It is usually used
|
|
968
968
|
# in combination with server-side movement calculation.
|
|
@@ -967,7 +967,7 @@ packet_set_entity_data:
|
|
|
967
967
|
!bound: both
|
|
968
968
|
runtime_entity_id: varint64
|
|
969
969
|
metadata: MetadataDictionary
|
|
970
|
-
tick:
|
|
970
|
+
tick: varint64
|
|
971
971
|
|
|
972
972
|
# SetActorMotion is sent by the server to change the client-side velocity of an entity. It is usually used
|
|
973
973
|
# in combination with server-side movement calculation.
|
|
@@ -970,7 +970,7 @@ packet_set_entity_data:
|
|
|
970
970
|
!bound: both
|
|
971
971
|
runtime_entity_id: varint64
|
|
972
972
|
metadata: MetadataDictionary
|
|
973
|
-
tick:
|
|
973
|
+
tick: varint64
|
|
974
974
|
|
|
975
975
|
# SetActorMotion is sent by the server to change the client-side velocity of an entity. It is usually used
|
|
976
976
|
# in combination with server-side movement calculation.
|
|
@@ -973,7 +973,7 @@ packet_set_entity_data:
|
|
|
973
973
|
!bound: both
|
|
974
974
|
runtime_entity_id: varint64
|
|
975
975
|
metadata: MetadataDictionary
|
|
976
|
-
tick:
|
|
976
|
+
tick: varint64
|
|
977
977
|
|
|
978
978
|
# SetActorMotion is sent by the server to change the client-side velocity of an entity. It is usually used
|
|
979
979
|
# in combination with server-side movement calculation.
|
|
@@ -973,7 +973,7 @@ packet_set_entity_data:
|
|
|
973
973
|
!bound: both
|
|
974
974
|
runtime_entity_id: varint64
|
|
975
975
|
metadata: MetadataDictionary
|
|
976
|
-
tick:
|
|
976
|
+
tick: varint64
|
|
977
977
|
|
|
978
978
|
# SetActorMotion is sent by the server to change the client-side velocity of an entity. It is usually used
|
|
979
979
|
# in combination with server-side movement calculation.
|
|
@@ -981,7 +981,7 @@ packet_set_entity_data:
|
|
|
981
981
|
!bound: both
|
|
982
982
|
runtime_entity_id: varint64
|
|
983
983
|
metadata: MetadataDictionary
|
|
984
|
-
tick:
|
|
984
|
+
tick: varint64
|
|
985
985
|
|
|
986
986
|
# SetActorMotion is sent by the server to change the client-side velocity of an entity. It is usually used
|
|
987
987
|
# in combination with server-side movement calculation.
|
|
@@ -991,7 +991,7 @@ packet_set_entity_data:
|
|
|
991
991
|
!bound: both
|
|
992
992
|
runtime_entity_id: varint64
|
|
993
993
|
metadata: MetadataDictionary
|
|
994
|
-
tick:
|
|
994
|
+
tick: varint64
|
|
995
995
|
|
|
996
996
|
# SetActorMotion is sent by the server to change the client-side velocity of an entity. It is usually used
|
|
997
997
|
# in combination with server-side movement calculation.
|