mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-07-01 16:33:43 -04:00
Change all "ID" parameter types to ulong
This commit is contained in:
@ -5,7 +5,7 @@
|
||||
public ulong SystemAddress { get; init; }
|
||||
public string Name { get; init; }
|
||||
public string Name_Localised { get; init; }
|
||||
public long MarketID { get; init; }
|
||||
public ulong MarketID { get; init; }
|
||||
public float Latitude { get; init; }
|
||||
public float Longitude { get; init; }
|
||||
public int BodyID { get; init; }
|
||||
|
@ -2,6 +2,6 @@
|
||||
{
|
||||
public class CrewLaunchFighter : CrewMemberJoins
|
||||
{
|
||||
public int ID { get; init; }
|
||||
public ulong ID { get; init; }
|
||||
}
|
||||
}
|
||||
|
@ -2,6 +2,6 @@
|
||||
{
|
||||
public class DockFighter : JournalBase
|
||||
{
|
||||
public int ID { get; init; }
|
||||
public ulong ID { get; init; }
|
||||
}
|
||||
}
|
||||
|
@ -3,6 +3,6 @@
|
||||
public class FighterRebuilt : JournalBase
|
||||
{
|
||||
public string Loadout { get; init; }
|
||||
public int ID { get; init; }
|
||||
public ulong ID { get; init; }
|
||||
}
|
||||
}
|
||||
|
@ -3,7 +3,7 @@
|
||||
public class LaunchSRV : JournalBase
|
||||
{
|
||||
public string Loadout { get; init; }
|
||||
public int ID { get; init; }
|
||||
public ulong ID { get; init; }
|
||||
public bool PlayerControlled { get; init; }
|
||||
}
|
||||
}
|
||||
|
@ -2,7 +2,7 @@
|
||||
{
|
||||
public class NpcCrewPaidWage : JournalBase
|
||||
{
|
||||
public int NpcCrewId { get; init; }
|
||||
public ulong NpcCrewId { get; init; }
|
||||
public string NpcCrewName { get; init; }
|
||||
public int Amount { get; init; }
|
||||
}
|
||||
|
@ -4,7 +4,7 @@ namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class NpcCrewRank : JournalBase
|
||||
{
|
||||
public int NpcCrewId { get; init; }
|
||||
public ulong NpcCrewId { get; init; }
|
||||
public string NpcCrewName { get; init; }
|
||||
public RankCombat RankCombat { get; init; }
|
||||
}
|
||||
|
Reference in New Issue
Block a user