Fix 'Hypopen shouldn't display solution examine text' (#26453)

* stealthy hypo

* ExaminableSolution hand check when in covert implement.

ExaminableSolution now has 'hidden' datafield to enable chemical inspection only in hand.

* cleaning code

* more cleaning

* Hidden datafield renamed to HeldOnly

* review

---------

Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
This commit is contained in:
drteaspoon420
2024-03-31 07:59:36 +03:00
committed by GitHub
parent 1ad509173d
commit 4e618e9387
3 changed files with 33 additions and 0 deletions

View File

@@ -5,4 +5,10 @@ public sealed partial class ExaminableSolutionComponent : Component
{
[DataField, ViewVariables(VVAccess.ReadWrite)]
public string Solution = "default";
/// <summary>
/// If false then the hidden solution is always visible.
/// </summary>
[DataField]
public bool HeldOnly;
}