mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-04-15 00:30:33 +03:00
[2051] Wait we did account for that
This commit is contained in:
parent
ff1f931afd
commit
acfe9f2717
@ -1007,7 +1007,7 @@ class AppWindow:
|
||||
commodities_flag = config.OUT_MKT_CSV | config.OUT_MKT_TD
|
||||
|
||||
if output_flags & config.OUT_STATION_ANY:
|
||||
if not is_docked and not monitor.state['OnFoot'] and not self.status['text']:
|
||||
if not is_docked and not monitor.state['OnFoot']:
|
||||
# Signal as error because the user might actually be docked
|
||||
# but the server hosting the Companion API hasn't caught up
|
||||
# LANG: Player is not docked at a station, when we expect them to be
|
||||
@ -1015,11 +1015,11 @@ class AppWindow:
|
||||
return False
|
||||
|
||||
# Ignore possibly missing shipyard info
|
||||
if output_flags & config.OUT_EDDN_SEND_STATION_DATA and not (has_commodities or has_modules) and not self.status['text']:
|
||||
if output_flags & config.OUT_EDDN_SEND_STATION_DATA and not (has_commodities or has_modules):
|
||||
# LANG: Status - Either no market or no modules data for station from Frontier CAPI
|
||||
self._handle_status(_("Station doesn't have anything!"))
|
||||
|
||||
elif not has_commodities and not self.status['text']:
|
||||
elif not has_commodities:
|
||||
# LANG: Status - No station market data from Frontier CAPI
|
||||
self._handle_status(_("Station doesn't have a market!"))
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user