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.
Files changed (54) hide show
  1. package/.github/workflows/ci.yml +1 -6
  2. package/.github/workflows/md-release.yml +5 -4
  3. package/.github/workflows/npm-publish.yml +1 -2
  4. package/.github/workflows/trigger.yml +2 -2
  5. package/README.md +14 -15
  6. package/data.js +22 -1
  7. package/doc/api.md +460 -167
  8. package/doc/history.md +410 -176
  9. package/index.d.ts +152 -125
  10. package/lib/indexes.js +0 -2
  11. package/lib/loader.js +1 -2
  12. package/minecraft-data/README.md +1 -1
  13. package/minecraft-data/data/bedrock/1.16.201/proto.yml +1 -1
  14. package/minecraft-data/data/bedrock/1.16.201/protocol.json +1 -1
  15. package/minecraft-data/data/bedrock/1.16.210/proto.yml +1 -1
  16. package/minecraft-data/data/bedrock/1.16.210/protocol.json +1 -1
  17. package/minecraft-data/data/bedrock/1.16.220/proto.yml +1 -1
  18. package/minecraft-data/data/bedrock/1.16.220/protocol.json +1 -1
  19. package/minecraft-data/data/bedrock/1.17.0/proto.yml +1 -1
  20. package/minecraft-data/data/bedrock/1.17.0/protocol.json +1 -1
  21. package/minecraft-data/data/bedrock/1.17.10/proto.yml +1 -1
  22. package/minecraft-data/data/bedrock/1.17.10/protocol.json +1 -1
  23. package/minecraft-data/data/bedrock/1.17.30/proto.yml +1 -1
  24. package/minecraft-data/data/bedrock/1.17.30/protocol.json +1 -1
  25. package/minecraft-data/data/bedrock/1.17.40/proto.yml +1 -1
  26. package/minecraft-data/data/bedrock/1.17.40/protocol.json +1 -1
  27. package/minecraft-data/data/bedrock/1.18.0/proto.yml +1 -1
  28. package/minecraft-data/data/bedrock/1.18.0/protocol.json +1 -1
  29. package/minecraft-data/data/bedrock/1.18.11/proto.yml +1 -1
  30. package/minecraft-data/data/bedrock/1.18.11/protocol.json +1 -1
  31. package/minecraft-data/data/bedrock/1.18.30/proto.yml +1 -1
  32. package/minecraft-data/data/bedrock/1.18.30/protocol.json +1 -1
  33. package/minecraft-data/data/bedrock/1.19.1/proto.yml +1 -1
  34. package/minecraft-data/data/bedrock/1.19.1/protocol.json +1 -1
  35. package/minecraft-data/data/bedrock/1.19.10/proto.yml +3680 -0
  36. package/minecraft-data/data/bedrock/1.19.10/protocol.json +1 -1
  37. package/minecraft-data/data/bedrock/1.19.10/types.yml +1955 -0
  38. package/minecraft-data/data/bedrock/1.19.20/protocol.json +10644 -0
  39. package/minecraft-data/data/bedrock/1.19.20/version.json +6 -0
  40. package/minecraft-data/data/bedrock/common/protocolVersions.json +6 -0
  41. package/minecraft-data/data/bedrock/common/versions.json +2 -1
  42. package/minecraft-data/data/bedrock/latest/proto.yml +55 -7
  43. package/minecraft-data/data/bedrock/latest/types.yml +7 -0
  44. package/minecraft-data/data/dataPaths.json +22 -1
  45. package/minecraft-data/data/pc/1.19/protocol.json +1 -5
  46. package/minecraft-data/data/pc/1.7/protocol.json +1 -1
  47. package/minecraft-data/data/pc/1.8/protocol.json +1 -1
  48. package/minecraft-data/data/pc/15w40b/protocol.json +1 -1
  49. package/minecraft-data/data/pc/common/protocolVersions.json +35 -0
  50. package/minecraft-data/doc/history.md +14 -0
  51. package/package.json +1 -1
  52. package/typings/generate-typings.js +22 -14
  53. package/typings/index-template.d.ts +160 -133
  54. 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
- // This will interface will merge with the generated one
876
- export interface Version {
877
- // Returns true if the current version is greater than or equal to the `other` version's dataVersion
878
- ['>='](other: string): boolean
879
- // Returns true if the current version is greater than the `other` version's dataVersion
880
- ['>'](other: string): boolean
881
- // Returns true if the current version is less than the `other` version's dataVersion
882
- ['<'](other: string): boolean
883
- // Returns true if the current version is less than than or equal to the `other` version's dataVersion
884
- ['<='](other: string): boolean
885
- // Returns true if the current version is equal to the `other` version's dataVersion
886
- ['=='](other: string): boolean
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
- pc: { [version: string]: Version };
892
- bedrock: { [version: string]: Version };
890
+ pc: { [version: string]: Version }
891
+ bedrock: { [version: string]: Version }
893
892
  }
894
893
 
895
894
  export interface SupportedVersions {
896
- pc: string[];
897
- bedrock: string[];
895
+ pc: string[]
896
+ bedrock: string[]
898
897
  }
899
898
 
900
899
  export interface Schemas {
901
- biomes: any;
902
- blocks: any;
903
- effects: any;
904
- entities: any;
905
- instruments: any;
906
- items: any;
907
- materials: any;
908
- protocol: any;
909
- protocolVersions: any;
910
- recipes: any;
911
- version: any;
912
- windows: any;
913
- foods: any;
914
- blockLoot: any;
915
- entityLoot: any;
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
- entityId: number;
918
+ entityId: number
920
919
 
921
- /**
922
- * introduced in Minecraft 1.16.2
923
- */
924
- isHardcore?: boolean;
920
+ /**
921
+ * introduced in Minecraft 1.16.2
922
+ */
923
+ isHardcore?: boolean
925
924
 
926
- gameMode: number;
925
+ gameMode: number
927
926
 
928
- /**
929
- * Introduced in Minecraft 1.17
930
- */
931
- previousGameMode?: number;
932
- /**
933
- * Introduced in Minecraft 1.17
934
- */
935
- worldNames?: string[];
936
- /**
937
- * Introduced in Minecraft 1.17
938
- */
939
- dimensionCodec?: any;
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
- dimension: any;
940
+ dimension: object
942
941
 
943
- /**
944
- * Introduced in Minecraft 1.17
945
- */
946
- worldName?: string;
942
+ /**
943
+ * Introduced in Minecraft 1.17
944
+ */
945
+ worldName?: string
947
946
 
948
- hashedSeed: number;
949
- maxPlayers: number;
950
- viewDistance: number;
947
+ hashedSeed: number
948
+ maxPlayers: number
949
+ viewDistance: number
951
950
 
952
- /**
953
- * Introduced in Minecraft 1.18
954
- */
955
- simulationDistance?: number;
951
+ /**
952
+ * Introduced in Minecraft 1.18
953
+ */
954
+ simulationDistance?: number
956
955
 
957
- reducedDebugInfo: boolean;
958
- enableRespawnScreen: boolean;
956
+ reducedDebugInfo: boolean
957
+ enableRespawnScreen: boolean
959
958
 
960
- /**
961
- * Introduced in Minecraft 1.17
962
- */
963
- isDebug?: boolean;
964
- /**
965
- * Introduced in Minecraft 1.17
966
- */
967
- isFlat?: boolean;
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
- isNewerOrEqualTo(version: string): boolean;
972
- isOlderThan(version: string): boolean;
973
- blocks: { [id: number]: Block; };
974
- blocksByName: { [name: string]: Block; };
975
- blocksArray: Block[];
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
- loginPacket: LoginPacket;
983
+ loginPacket: LoginPacket
978
984
 
979
- items: { [id: number]: Item; };
980
- itemsByName: { [name: string]: Item; };
981
- itemsArray: Item[];
985
+ items: { [id: number]: Item }
986
+ itemsByName: { [name: string]: Item }
987
+ itemsArray: Item[]
982
988
 
983
- foods: { [id: number]: Food; };
984
- foodsByName: { [name: string]: Food; };
985
- foodsArray: Food[];
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
- biomes: { [id: number]: Biome; };
990
- biomesArray: Biome[];
991
- biomesByName: { [name: string]: Biome; };
993
+ biomes: { [id: number]: Biome }
994
+ biomesArray: Biome[]
995
+ biomesByName: { [name: string]: Biome }
992
996
 
993
- recipes: { [id: number]: Recipe[]; };
997
+ recipes: { [id: number]: Recipe[] }
994
998
 
995
- instruments: { [id: number]: Instrument; };
996
- instrumentsArray: Instrument[];
999
+ instruments: { [id: number]: Instrument }
1000
+ instrumentsArray: Instrument[]
997
1001
 
998
- materials: { [name: string]: Material };
1002
+ materials: { [name: string]: Material }
999
1003
 
1000
- mobs: { [id: number]: Entity; };
1001
- objects: { [id: number]: Entity; };
1002
- entitiesByName: { [name: string]: Entity; };
1003
- entitiesArray: Entity[];
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
- enchantments: { [id: number]: Enchantment; };
1006
- enchantmentsByName: { [name: string]: Enchantment; };
1007
- enchantmentsArray: Enchantment[];
1010
+ enchantments: { [id: number]: Enchantment }
1011
+ enchantmentsByName: { [name: string]: Enchantment }
1012
+ enchantmentsArray: Enchantment[]
1008
1013
 
1009
- protocol: any;
1010
- protocolComments: any;
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
- windows: { [id: number]: Window; };
1013
- windowsByName: { [name: string]: Window; };
1014
- windowsArray: Window[];
1030
+ effects: { [id: number]: Effect }
1031
+ effectsByName: { [name: string]: Effect }
1032
+ effectsArray: Effect[]
1015
1033
 
1016
- effects: { [id: number]: Effect; };
1017
- effectsByName: { [name: string]: Effect; };
1018
- effectsArray: Effect[];
1034
+ particles: { [id: number]: Particle }
1035
+ particlesByName: { [name: string]: Particle }
1036
+ particlesArray: Particle[]
1019
1037
 
1020
- attributes: { [resource: string]: string; };
1021
- attributesByName: { [name: string]: string; };
1022
- attributesArray: [];
1038
+ attributes: { [resource: string]: string }
1039
+ attributesByName: { [name: string]: string }
1040
+ attributesArray: []
1023
1041
 
1024
- version: Version;
1042
+ commands: {}
1025
1043
 
1026
- type: string;
1044
+ version: Version
1027
1045
 
1028
- language: { [key: string]: string };
1046
+ type: 'pc' | 'bedrock'
1029
1047
 
1030
- blockLoot: { [id: number]: BlockLoot; };
1031
- blockLootByName: { [name: string]: BlockLoot; };
1048
+ language: { [key: string]: string }
1032
1049
 
1033
- entityLoot: { [id: number]: EntityLoot; };
1034
- entityLootByName: { [name: string]: EntityLoot; };
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
- [key in keyof SupportedVersions]: Version[];
1039
- };
1040
- const versionsByMinecraftVersion: VersionSet;
1041
- const preNettyVersionsByProtocolVersion: VersionSet;
1042
- const postNettyVersionsByProtocolVersion: VersionSet;
1043
- const supportedVersions: SupportedVersions;
1044
- const schemas: Schemas;
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
 
@@ -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
 
@@ -834,7 +834,7 @@ packet_set_entity_data:
834
834
  !bound: both
835
835
  runtime_entity_id: varint
836
836
  metadata: MetadataDictionary
837
- tick: varint
837
+ tick: varint64
838
838
 
839
839
  packet_set_entity_motion:
840
840
  !id: 0x28
@@ -4478,7 +4478,7 @@
4478
4478
  },
4479
4479
  {
4480
4480
  "name": "tick",
4481
- "type": "varint"
4481
+ "type": "varint64"
4482
4482
  }
4483
4483
  ]
4484
4484
  ],
@@ -849,7 +849,7 @@ packet_set_entity_data:
849
849
  !bound: both
850
850
  runtime_entity_id: varint64
851
851
  metadata: MetadataDictionary
852
- tick: varint
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.
@@ -4629,7 +4629,7 @@
4629
4629
  },
4630
4630
  {
4631
4631
  "name": "tick",
4632
- "type": "varint"
4632
+ "type": "varint64"
4633
4633
  }
4634
4634
  ]
4635
4635
  ],
@@ -878,7 +878,7 @@ packet_set_entity_data:
878
878
  !bound: both
879
879
  runtime_entity_id: varint64
880
880
  metadata: MetadataDictionary
881
- tick: varint
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.
@@ -5059,7 +5059,7 @@
5059
5059
  },
5060
5060
  {
5061
5061
  "name": "tick",
5062
- "type": "varint"
5062
+ "type": "varint64"
5063
5063
  }
5064
5064
  ]
5065
5065
  ],
@@ -879,7 +879,7 @@ packet_set_entity_data:
879
879
  !bound: both
880
880
  runtime_entity_id: varint64
881
881
  metadata: MetadataDictionary
882
- tick: varint
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.
@@ -5137,7 +5137,7 @@
5137
5137
  },
5138
5138
  {
5139
5139
  "name": "tick",
5140
- "type": "varint"
5140
+ "type": "varint64"
5141
5141
  }
5142
5142
  ]
5143
5143
  ],
@@ -962,7 +962,7 @@ packet_set_entity_data:
962
962
  !bound: both
963
963
  runtime_entity_id: varint64
964
964
  metadata: MetadataDictionary
965
- tick: varint
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.
@@ -5227,7 +5227,7 @@
5227
5227
  },
5228
5228
  {
5229
5229
  "name": "tick",
5230
- "type": "varint"
5230
+ "type": "varint64"
5231
5231
  }
5232
5232
  ]
5233
5233
  ],
@@ -967,7 +967,7 @@ packet_set_entity_data:
967
967
  !bound: both
968
968
  runtime_entity_id: varint64
969
969
  metadata: MetadataDictionary
970
- tick: varint
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.
@@ -5345,7 +5345,7 @@
5345
5345
  },
5346
5346
  {
5347
5347
  "name": "tick",
5348
- "type": "varint"
5348
+ "type": "varint64"
5349
5349
  }
5350
5350
  ]
5351
5351
  ],
@@ -970,7 +970,7 @@ packet_set_entity_data:
970
970
  !bound: both
971
971
  runtime_entity_id: varint64
972
972
  metadata: MetadataDictionary
973
- tick: varint
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.
@@ -5376,7 +5376,7 @@
5376
5376
  },
5377
5377
  {
5378
5378
  "name": "tick",
5379
- "type": "varint"
5379
+ "type": "varint64"
5380
5380
  }
5381
5381
  ]
5382
5382
  ],
@@ -973,7 +973,7 @@ packet_set_entity_data:
973
973
  !bound: both
974
974
  runtime_entity_id: varint64
975
975
  metadata: MetadataDictionary
976
- tick: varint
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.
@@ -5391,7 +5391,7 @@
5391
5391
  },
5392
5392
  {
5393
5393
  "name": "tick",
5394
- "type": "varint"
5394
+ "type": "varint64"
5395
5395
  }
5396
5396
  ]
5397
5397
  ],
@@ -973,7 +973,7 @@ packet_set_entity_data:
973
973
  !bound: both
974
974
  runtime_entity_id: varint64
975
975
  metadata: MetadataDictionary
976
- tick: varint
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.
@@ -5426,7 +5426,7 @@
5426
5426
  },
5427
5427
  {
5428
5428
  "name": "tick",
5429
- "type": "varint"
5429
+ "type": "varint64"
5430
5430
  }
5431
5431
  ]
5432
5432
  ],
@@ -981,7 +981,7 @@ packet_set_entity_data:
981
981
  !bound: both
982
982
  runtime_entity_id: varint64
983
983
  metadata: MetadataDictionary
984
- tick: varint
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.
@@ -5509,7 +5509,7 @@
5509
5509
  },
5510
5510
  {
5511
5511
  "name": "tick",
5512
- "type": "varint"
5512
+ "type": "varint64"
5513
5513
  }
5514
5514
  ]
5515
5515
  ],
@@ -991,7 +991,7 @@ packet_set_entity_data:
991
991
  !bound: both
992
992
  runtime_entity_id: varint64
993
993
  metadata: MetadataDictionary
994
- tick: varint
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.
@@ -5563,7 +5563,7 @@
5563
5563
  },
5564
5564
  {
5565
5565
  "name": "tick",
5566
- "type": "varint"
5566
+ "type": "varint64"
5567
5567
  }
5568
5568
  ]
5569
5569
  ],