diff options
Diffstat (limited to 'parsers/locations.py')
-rw-r--r-- | parsers/locations.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/parsers/locations.py b/parsers/locations.py index 4745bc6..bdb2fff 100644 --- a/parsers/locations.py +++ b/parsers/locations.py @@ -259,13 +259,11 @@ def LoadPositions(): mappoints = {} found_points = {} pts = MapLocations().points() - i=0 for pt in pts: svxid, number, point_type, ent = pt - i += 1 #((st, str(ent), ent.needs_surface_work(), ent)) if svxid in mappoints: - print(f" = seen this svxid {svxid} for {ent} already on {mappoints[svxid]} item {i}") + print(f" = seen this svxid {svxid} for {ent} already on entrance {mappoints[svxid]}") else: mappoints[svxid] = ent if svxid =="1": |