Просмотр исходного кода

Default to always asking which planet to upgrade.

Steve Thielemann 5 лет назад
Родитель
Сommit
1a1a5d18f3
1 измененных файлов с 1 добавлено и 21 удалено
  1. 1 21
      flexible.py

+ 1 - 21
flexible.py

@@ -2000,27 +2000,7 @@ class PlanetUpScript(object):
                 self.deactivate()
                 return
 
-            # Get current sector from the prompt
-            # Command [TL=00:00:00]:[10202] (?=Help)? :
-            _, _, part = prompt.partition(']:[')
-            sector, _, _ = part.partition(']')
-            self.current_sector = int(sector)
-            # self.queue_game.put("Current: {0}\r\n".format(sector))
-            # Only ONE planet right in front of us?  Default to upgrading it!
-            # Otherwise, we'll have to ask.
-            obvious = [ s for s in self.planets.keys() if self.planets[s]['sector'] == self.current_sector ]
-            if len(obvious) == 1:
-                # There is one.
-                self.planet_number = obvious[0]
-                self.planet_sector = self.planets[self.planet_number]['sector']
-                self.planet_name = self.planets[self.planet_number]['name']
-                self.state = 4
-                # begin landing procedure ...
-                self.queue_player.put("L")
-                return
-            
-            # There are either no obvious planets to upgrade, 
-            # or there are multiple planet choices.
+            # A better default is to ask which planet to upgrade.
 
             tc = merge(Style.BRIGHT + Fore.YELLOW + Back.BLUE)
             c1 = merge(Style.BRIGHT + Fore.WHITE + Back.BLUE)