Parcourir la source

Checking for extra T when planet is maxed out.

Steve Thielemann il y a 5 ans
Parent
commit
674050416b
1 fichiers modifiés avec 4 ajouts et 0 suppressions
  1. 4 0
      flexible.py

+ 4 - 0
flexible.py

@@ -2251,6 +2251,10 @@ class PlanetUpScript(object):
             # 10202   #3    Home of Bugz             Class M, Earth Type        No Citadel]
             if '#' in line:
                 # Ok, we have a planet detail line.
+                # There's an extra T when the planet is maxed out.
+                if line[7] = 'T':
+                    line = line[:7] + ' ' + line[8:]
+
                 detail, _, _ = line.partition('Class')
                 detail = detail.strip() # Sector  #X  Name of planet
                 sector, number, name = re.split(r'\s+', detail, 2)