fix cartographics value, use Total instead of TotalEarnings
This commit is contained in:
@@ -35,10 +35,10 @@ public class Cartographics : Transaction {
|
||||
/* add multi sell and normal ones together */
|
||||
long total =
|
||||
Entries.OfType<MultiSellExplorationDataEntry>()
|
||||
.Sum(x => x.TotalEarnings)
|
||||
.Sum(x => x.Total)
|
||||
+
|
||||
Entries.OfType<SellExplorationDataEntry>()
|
||||
.Sum(x => x.TotalEarnings)
|
||||
.Sum(x => x.Total)
|
||||
;
|
||||
return total;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user