forked from MTSR/mapserver
fix #44
This commit is contained in:
parent
22b4a91470
commit
bfcd3167a0
@ -3,6 +3,7 @@ package mapobject
|
||||
import (
|
||||
"mapserver/mapblockparser"
|
||||
"mapserver/mapobjectdb"
|
||||
"strings"
|
||||
)
|
||||
|
||||
type TravelnetBlock struct{}
|
||||
@ -10,6 +11,12 @@ type TravelnetBlock struct{}
|
||||
func (this *TravelnetBlock) onMapObject(x, y, z int, block *mapblockparser.MapBlock) *mapobjectdb.MapObject {
|
||||
md := block.Metadata.GetMetadata(x, y, z)
|
||||
|
||||
// ignore (P) prefixed stations
|
||||
// TODO: configurable prefix
|
||||
if strings.HasPrefix(md["station_name"], "(P)") {
|
||||
return nil
|
||||
}
|
||||
|
||||
o := mapobjectdb.NewMapObject(block.Pos, x, y, z, "travelnet")
|
||||
o.Attributes["owner"] = md["owner"]
|
||||
o.Attributes["station_name"] = md["station_name"]
|
||||
|
Loading…
Reference in New Issue
Block a user