mapserver/server/mapobject/quarry.go

24 lines
495 B
Go
Raw Normal View History

2019-01-29 09:47:53 +03:00
package mapobject
import (
"mapserver/mapblockparser"
"mapserver/mapobjectdb"
)
type QuarryBlock struct{}
func (this *QuarryBlock) onMapObject(x, y, z int, block *mapblockparser.MapBlock) *mapobjectdb.MapObject {
md := block.Metadata.GetMetadata(x, y, z)
if md["owner"] == "" {
return nil
}
2019-02-06 10:38:08 +03:00
o := mapobjectdb.NewMapObject(block.Pos, x, y, z, "technicquarry")
2019-01-29 09:47:53 +03:00
o.Attributes["owner"] = md["owner"]
o.Attributes["dug"] = md["dug"]
o.Attributes["enabled"] = md["enabled"]
return o
}