mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
Fix incorrect type for the Cargo.Inventory property (#49)
Discovered when attempting to handle this event for an in-progress plugin.
This commit is contained in:
parent
701f6f0b1c
commit
1e1aeef958
@ -1,4 +1,5 @@
|
|||||||
using System.Collections.Immutable;
|
using Observatory.Framework.Files.ParameterTypes;
|
||||||
|
using System.Collections.Immutable;
|
||||||
|
|
||||||
namespace Observatory.Framework.Files.Journal
|
namespace Observatory.Framework.Files.Journal
|
||||||
{
|
{
|
||||||
@ -6,6 +7,6 @@ namespace Observatory.Framework.Files.Journal
|
|||||||
{
|
{
|
||||||
public string Vessel { get; init; }
|
public string Vessel { get; init; }
|
||||||
public int Count { get; init; }
|
public int Count { get; init; }
|
||||||
public ImmutableList<Cargo> Inventory { get; init; }
|
public ImmutableList<CargoType> Inventory { get; init; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user