21 lines
471 B
Go
21 lines
471 B
Go
package mapobject
|
|
|
|
import (
|
|
"mapserver/mapobjectdb"
|
|
"mapserver/types"
|
|
|
|
"github.com/minetest-go/mapparser"
|
|
)
|
|
|
|
type ProtectorBlock struct{}
|
|
|
|
func (this *ProtectorBlock) onMapObject(mbpos *types.MapBlockCoords, x, y, z int, block *mapparser.MapBlock) *mapobjectdb.MapObject {
|
|
md := block.Metadata.GetMetadata(x, y, z)
|
|
|
|
o := mapobjectdb.NewMapObject(mbpos, x, y, z, "protector")
|
|
o.Attributes["owner"] = md["owner"]
|
|
o.Attributes["members"] = md["members"]
|
|
|
|
return o
|
|
}
|