Fix many bugs related to GUI not receiving a correct timestamp, as well as extending feature out to all other fit entities.

This commit is contained in:
blitzmann
2017-05-07 02:02:54 -04:00
parent f9b7376cc7
commit 1604ea1f2c
8 changed files with 112 additions and 45 deletions

View File

@@ -267,10 +267,15 @@ class Fit(object):
pyfalog.debug("Searching for fit: {0}", name)
results = eos.db.searchFits(name)
fits = []
for fit in results:
fits.append((
fit.ID, fit.name, fit.ship.item.ID, fit.ship.item.name, fit.booster,
fit.timestamp))
fit.ID,
fit.name,
fit.ship.item.ID,
fit.ship.item.name,
fit.booster,
fit.modifiedCoalesce))
return fits
def addImplant(self, fitID, itemID, recalc=True):