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

EvilTrade: Evil Trade Pairs

  Ok so we have the code in galaxy.py that should allow us to get evil
trade pairs... we just need to write the code in flexible.py that uses
all that stuffz.

  And then we need to add some way to record busted ports
automatically... (If the player manually gets a bust or gets a bust from
using a script, should record the bust anyway)
david 5 лет назад
Родитель
Сommit
7ba939c1f1
1 измененных файлов с 2 добавлено и 6 удалено
  1. 2 6
      flexible.py

+ 2 - 6
flexible.py

@@ -3975,12 +3975,8 @@ class evilTrade(object):
                 self.deactivate(True)
             else:
                 # Now to go to evil trade pair \o/
-                self.target_sector = self.game.gamedata.find_nearest_evilpairs(
-                    self.sector, self
-                )
-                self.send2player(
-                    self.nl + Boxes.alert("{0}".format(self.target_sector))
-                )
+                # Ok so if we go to line  2117 we can see how to use find_nearest_tradepairs()
+                # Which will give us a starting point for what needs to be done for us trading
                 self.send2player(self.nl + Boxes.alert("Done!"))
                 self.deactivate(True)