Export the blocks data
This commit is contained in:
@ -44,7 +44,7 @@ func init() {
|
||||
ToStateID = make(map[Block]int, len(states))
|
||||
StateList = make([]Block, 0, len(states))
|
||||
for _, state := range states {
|
||||
block := fromID[state.Name]
|
||||
block := FromID[state.Name]
|
||||
if state.Properties.Type != nbt.TagEnd {
|
||||
err := state.Properties.Unmarshal(&block)
|
||||
if err != nil {
|
||||
@ -59,8 +59,3 @@ func init() {
|
||||
}
|
||||
BitsPerBlock = bits.Len(uint(len(StateList)))
|
||||
}
|
||||
|
||||
func DefaultBlock(id string) (b Block, ok bool) {
|
||||
b, ok = fromID[id]
|
||||
return
|
||||
}
|
||||
|
Reference in New Issue
Block a user