]> ruin.nu Git - hbs.git/blobdiff - bs/fleetview.cpp
now shows the lost score for the planet and the capping each tick
[hbs.git] / bs / fleetview.cpp
index 1144ca9d2eb104ca8dee0b28881da181fdc8b87f..3935616fb31a7c23ee28fd823ca702af6314a331 100644 (file)
@@ -316,6 +316,14 @@ void FleetView::slotViewTickRange(int min = -1, int max = -1)
                after = pl->roids(tr("uninit").latin1(),m_iMaxTick);
                lost = after - before;
                m_RoidsEditView->slotSetLost(tr("uninit"),lost);
+
+               before = pl->planetScore(m_iMinTick);
+               after = pl->planetScore(m_iMaxTick);
+               lost = after - before;
+               m_RoidsEditView->slotSetLost(tr("scorelost"),lost);
+
+               m_RoidsEditView->slotSetLost(tr("capping"),pl->capping(m_iMaxTick));
+
        }
 }