Skip to content

Commit

Permalink
Support the new (and undocumented) ShipRedeemed event.
Browse files Browse the repository at this point in the history
(It's exactly the same as `ShipyardNew` but for Arx-purchased ships).
  • Loading branch information
Tkael committed May 12, 2024
1 parent a1eefe0 commit 836102d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions JournalMonitor/JournalMonitor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1184,6 +1184,7 @@ public static List<Event> ParseJournalEntry(string line, bool fromLogLoad = fals
handled = true;
break;
case "ShipyardNew":
case "ShipRedeemed":
{
data.TryGetValue("NewShipID", out object val);
int shipId = (int)(long)val;
Expand Down

0 comments on commit 836102d

Please sign in to comment.