소스 검색

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 년 전
부모
커밋
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)