|
@@ -345,8 +345,8 @@ class GameData(object):
|
|
|
def port_trade_show(self, sector: int, warp: int):
|
|
|
sector_port = self.ports[sector]
|
|
|
warp_port = self.ports[warp]
|
|
|
- sector_pct = GameData.port_pct(sector_port)
|
|
|
- warp_pct = GameData.port_pct(warp_port)
|
|
|
+ # sector_pct = GameData.port_pct(sector_port)
|
|
|
+ # warp_pct = GameData.port_pct(warp_port)
|
|
|
return "{0} \xae\xcd\xaf {1}".format(
|
|
|
GameData.port_show_part(sector, sector_port),
|
|
|
GameData.port_show_part(warp, warp_port),
|
|
@@ -354,8 +354,8 @@ class GameData(object):
|
|
|
|
|
|
@staticmethod
|
|
|
def port_show(sector: int, sector_port: dict, warp: int, warp_port: dict):
|
|
|
- sector_pct = GameData.port_pct(sector_port)
|
|
|
- warp_pct = GameData.port_pct(warp_port)
|
|
|
+ # sector_pct = GameData.port_pct(sector_port)
|
|
|
+ # warp_pct = GameData.port_pct(warp_port)
|
|
|
return "{0} -=- {1}".format(
|
|
|
GameData.port_show_part(sector, sector_port),
|
|
|
GameData.port_show_part(warp, warp_port),
|