Fix: Prevent single-use hyposprays from getting the toggle draw verb (#26595)

Prevent single-use hyposprays from getting the toggle draw verb

Co-authored-by: Plykiya <plykiya@protonmail.com>
This commit is contained in:
Plykiya
2024-03-30 22:20:48 -07:00
committed by GitHub
parent c91ed96853
commit 90a880a9be
3 changed files with 16 additions and 1 deletions

View File

@@ -30,4 +30,11 @@ public sealed partial class HyposprayComponent : Component
[AutoNetworkedField]
[DataField(required: true)]
public bool OnlyAffectsMobs = false;
/// <summary>
/// Whether or not the hypospray is able to draw from containers or if it's a single use
/// device that can only inject.
/// </summary>
[DataField]
public bool InjectOnly = false;
}