1
0
forked from MTSR/mapserver

ignore empty owner field in old bones

fixes #68
This commit is contained in:
Thomas Rudin 2019-12-12 21:46:13 +01:00
parent 914311593c
commit 837055bc20

View File

@ -11,13 +11,10 @@ type BonesBlock struct{}
func (this *BonesBlock) onMapObject(x, y, z int, block *mapblockparser.MapBlock) *mapobjectdb.MapObject {
md := block.Metadata.GetMetadata(x, y, z)
if md["owner"] == "" {
return nil
}
o := mapobjectdb.NewMapObject(block.Pos, x, y, z, "bones")
o.Attributes["time"] = md["time"]
o.Attributes["owner"] = md["owner"]
o.Attributes["info"] = md["infotext"]
invMap := block.Metadata.GetInventoryMapAtPos(x, y, z)
mainInv := invMap["main"]