Hotfix for issue #48

This commit is contained in:
blitzmann
2014-02-17 22:44:40 -05:00
parent acdc2c496e
commit 4095365518
2 changed files with 6 additions and 3 deletions

View File

@@ -630,7 +630,7 @@ class Market():
def searchShips(self, name):
"""Find ships according to given text pattern"""
results = eos.db.searchItems(name)
results = eos.db.searchItems(name, True)
ships = set()
for item in results:
if self.getCategoryByItem(item).name == "Ship" and self.getPublicityByItem(item):