1.21.60 support
This commit is contained in:
25
legacyver/v776.go
Normal file
25
legacyver/v776.go
Normal file
@@ -0,0 +1,25 @@
|
||||
package legacyver
|
||||
|
||||
import (
|
||||
_ "embed"
|
||||
"github.com/akmalfairuz/legacy-version/mapping"
|
||||
)
|
||||
|
||||
const (
|
||||
// ItemVersion776 ...
|
||||
ItemVersion776 = 241
|
||||
// BlockVersion776 ...
|
||||
BlockVersion776 int32 = (1 << 24) | (21 << 16) | (60 << 8)
|
||||
)
|
||||
|
||||
var (
|
||||
//go:embed data/item_runtime_ids_776.nbt
|
||||
itemRuntimeIDData776 []byte
|
||||
//go:embed data/required_item_list_776.json
|
||||
requiredItemList776 []byte
|
||||
//go:embed data/block_states_776.nbt
|
||||
blockStateData776 []byte
|
||||
|
||||
itemMappingLatest = mapping.NewItemMapping(itemRuntimeIDData776, requiredItemList776, ItemVersion776, false)
|
||||
blockMappingLatest = mapping.NewBlockMapping(blockStateData776)
|
||||
)
|
||||
Reference in New Issue
Block a user