Skip to content

Commit

Permalink
Make HireResearchers reason work
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanKell authored Aug 8, 2023
1 parent 66b02c8 commit d83fcf0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Leaders/CurrencyModifierQueryRP0.cs
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ public enum TransactionReasonsRP0 : long
None = 0,
//ContractAdvance = 1L << 1,
ContractReward = 1L << 2,
ContractPenalty = 1L << 3,
//ContractPenalty = 1L << 3,
Contracts = ContractPenalty | ContractReward | ContractDecline,

VesselPurchase = 1L << 4, // VesselRollout
Expand Down Expand Up @@ -490,7 +490,7 @@ public enum TransactionReasonsRP0 : long
Crew = CrewRecruited | SalaryCrew | CrewTraining,

HiringEngineers = 1L << 30,
HiringResearchers = 1L << 31,
HiringResearchers = 1L << 3,
Hiring = HiringEngineers | HiringResearchers,

Personnel = Salary | Crew | Hiring,
Expand Down

0 comments on commit d83fcf0

Please sign in to comment.