Compare commits
No commits in common. "86d27fb2a39572a2afe1d217ce1013f280bdce37" and "e75e0773fdfd2cfdac6b1ddab65fc533e98f476c" have entirely different histories.
86d27fb2a3
...
e75e0773fd
@ -8,17 +8,11 @@ public class BioData {
|
||||
public string? SpeciesLocalised { get; set; }
|
||||
public long Value { get; set; } = 0;
|
||||
public long Bonus { get; set; } = 0;
|
||||
|
||||
public long TotalValue {
|
||||
get {
|
||||
return Value + Bonus;
|
||||
}
|
||||
}
|
||||
public long TotalValue => Value + Bonus;
|
||||
}
|
||||
public class SellOrganicDataEntry : Entry {
|
||||
public long MarketID { get; set; }
|
||||
|
||||
public List<BioData> BioData { get; } = new();
|
||||
public List<BioData> BioData => new List<BioData>();
|
||||
|
||||
protected override void Initialise() {
|
||||
MarketID = JSON.Value<long?>("MarketID") ?? 0;
|
||||
|
@ -54,11 +54,9 @@ public class MissionFormat : LogFormatter {
|
||||
if (passengers.ContainsKey(mission.Key)) {
|
||||
output.AppendFormat(" ({0} Passengers)", passengers[mission.Key]);
|
||||
}
|
||||
|
||||
output.Append("\n");
|
||||
}
|
||||
|
||||
output.Append("\n");
|
||||
output.Append("\n\n");
|
||||
|
||||
foreach (InfluenceSupport inf in support) {
|
||||
output.Append(inf.ToString());
|
||||
|
Loading…
x
Reference in New Issue
Block a user