Fix issues with Journal handling
Implement basic database Handle startup events only send events after the most recent LoadGame
This commit is contained in:
parent
efd0b3e0c0
commit
579b2b115d
24 changed files with 569 additions and 100 deletions
|
|
@ -15,7 +15,7 @@ public class LoadGame : JournalBase
|
|||
public bool StartLanded { get; init; }
|
||||
public bool StartDead { get; init; }
|
||||
public string GameMode { get; init; }
|
||||
public string Group { get; init; }
|
||||
public string? Group { get; init; }
|
||||
public long Credits { get; init; }
|
||||
public long Loan { get; init; }
|
||||
public string ShipName { get; init; }
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ public class Statistics : JournalBase
|
|||
public Trading Trading { get; init; }
|
||||
public Mining Mining { get; init; }
|
||||
public ParameterTypes.Exploration Exploration { get; init; }
|
||||
public Passengers Passengers { get; init; }
|
||||
public ParameterTypes.Passengers Passengers { get; init; }
|
||||
[JsonPropertyName("Search_And_Rescue")]
|
||||
public ParameterTypes.SearchAndRescue SearchAndRescue { get; init; }
|
||||
public Crafting Crafting { get; init; }
|
||||
|
|
|
|||
Loading…
Reference in a new issue