Make clumsy entities able to shoot funny weapons (#18156)

* Make clumsy entities able to shoot funny weapons

* remove unneeded line
This commit is contained in:
Arendian
2023-07-19 23:22:07 +02:00
committed by GitHub
parent 3caa1ea356
commit 580d481710
5 changed files with 13 additions and 2 deletions

View File

@@ -142,6 +142,13 @@ public partial class GunComponent : Component
/// </summary>
[DataField("showExamineText")]
public bool ShowExamineText = true;
/// <summary>
/// Whether or not someone with the
/// clumsy trait can shoot this
/// </summary>
[DataField("clumsyProof")]
public bool ClumsyProof = false;
}
[Flags]