升级到1.14.4
This commit is contained in:
@ -35,6 +35,7 @@ func init() {
|
||||
|
||||
const blockStatesLen = 11270 + 1
|
||||
|
||||
// TODO: check updates of block status
|
||||
var blockStatesJSON = `
|
||||
{
|
||||
"minecraft:air": {
|
||||
|
@ -1,5 +1,7 @@
|
||||
package data
|
||||
|
||||
//TODO: check updates en_us translation
|
||||
|
||||
// EnUs , the default language translate data
|
||||
// When update this data, replace "%[0-9]\$s" with "%[0-9]s"
|
||||
var EnUs = map[string]string{
|
||||
|
@ -17,6 +17,7 @@ func init() {
|
||||
}
|
||||
}
|
||||
|
||||
//TODO: check updates itemIDS
|
||||
var itemIDsJSON = ` {
|
||||
"minecraft:air": {
|
||||
"protocol_id": 0
|
||||
|
@ -1,6 +1,6 @@
|
||||
package data
|
||||
|
||||
//Clientbound packet IDs
|
||||
// Clientbound packet IDs
|
||||
const (
|
||||
SpawnObject byte = iota //0x00
|
||||
SpawnExperienceOrb
|
||||
@ -98,10 +98,11 @@ const (
|
||||
EntityProperties
|
||||
EntityEffect
|
||||
DeclareRecipes
|
||||
Tags //0x5B
|
||||
Tags
|
||||
AcknowledgePlayerDigging //0x5C
|
||||
)
|
||||
|
||||
//Serverbound packet IDs
|
||||
// Serverbound packet IDs
|
||||
const (
|
||||
TeleportConfirm byte = iota //0x00
|
||||
QueryBlockNBT
|
||||
|
@ -1,5 +1,7 @@
|
||||
package data
|
||||
|
||||
//TODO: check updates sound names
|
||||
|
||||
//SoundNames match the sound IDs' name
|
||||
var SoundNames = []string{
|
||||
"ambient.cave",
|
||||
|
Reference in New Issue
Block a user