minecraft-data 3.20.0 → 3.21.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/data.js +1 -1
- package/doc/history.md +4 -0
- package/minecraft-data/README.md +1 -0
- package/minecraft-data/data/dataPaths.json +1 -1
- package/minecraft-data/data/pc/1.19.2/loginPacket.json +5982 -0
- package/minecraft-data/data/pc/1.19.2/protocol.json +29 -39
- package/minecraft-data/data/pc/common/features.json +5 -0
- package/minecraft-data/doc/history.md +4 -0
- package/package.json +1 -1
package/data.js
CHANGED
|
@@ -1150,7 +1150,7 @@ module.exports =
|
|
|
1150
1150
|
get particles () { return require("./minecraft-data/data/pc/1.19.2/particles.json") },
|
|
1151
1151
|
get blockLoot () { return require("./minecraft-data/data/pc/1.19/blockLoot.json") },
|
|
1152
1152
|
get entityLoot () { return require("./minecraft-data/data/pc/1.19/entityLoot.json") },
|
|
1153
|
-
get loginPacket () { return require("./minecraft-data/data/pc/1.19/loginPacket.json") },
|
|
1153
|
+
get loginPacket () { return require("./minecraft-data/data/pc/1.19.2/loginPacket.json") },
|
|
1154
1154
|
get tints () { return require("./minecraft-data/data/pc/1.19.2/tints.json") },
|
|
1155
1155
|
get mapIcons () { return require("./minecraft-data/data/pc/1.16/mapIcons.json") }
|
|
1156
1156
|
}
|
package/doc/history.md
CHANGED
package/minecraft-data/README.md
CHANGED
|
@@ -79,6 +79,7 @@ These are the projects that use minecraft-data:
|
|
|
79
79
|
| [McEx](https://github.com/hansihe/McEx) | Elixir | server | blocks |
|
|
80
80
|
| [VoxelGamesLib](https://github.com/MiniDigger/VoxelGamesLib) | Java | minigames server library | blocks, items |
|
|
81
81
|
| [Phpcraft](https://github.com/Phpcraft/core) | PHP | all-around library | blocks, items, entities, protocol |
|
|
82
|
+
| [MineSharp](https://github.com/psu-de/MineSharp) | C# | Bots | Protocol, Blocks, Items, Entities, Biomes, Recipes, Enchantments |
|
|
82
83
|
|
|
83
84
|
## Extraction
|
|
84
85
|
|