mirror of
https://github.com/nikdoof/dropbot.git
synced 2025-12-21 05:39:27 +00:00
Add HED and GE-8
This commit is contained in:
@@ -15,6 +15,8 @@ market_systems = [
|
||||
('Amarr', 30002187),
|
||||
('Rens', 30002510),
|
||||
('Dodixie', 30002659),
|
||||
('HED-GP', 30001161),
|
||||
('GE-8JV', 30001198),
|
||||
]
|
||||
|
||||
|
||||
@@ -169,7 +171,7 @@ class DropBot(ClientXMPP):
|
||||
for name, sys_id in market_systems:
|
||||
sell, buy = self._get_evecentral_price(type_id, sys_id)
|
||||
print name, sell, buy
|
||||
if sell < min_sell or min_sell == 0:
|
||||
if (sell < min_sell or min_sell == 0) and sell > 0:
|
||||
min_sell = sell
|
||||
sell_sys = name
|
||||
if buy > max_buy:
|
||||
|
||||
Reference in New Issue
Block a user