Allow direct transfer between specific BallisticAmmoProviders. (#12964)

This commit is contained in:
Vordenburg
2023-01-20 11:08:17 -05:00
committed by GitHub
parent da1de51202
commit 7575c0944b
17 changed files with 104 additions and 1 deletions

View File

@@ -45,4 +45,10 @@ public sealed class BallisticAmmoProviderComponent : Component
/// </summary>
[ViewVariables(VVAccess.ReadWrite), DataField("cycled")]
public bool Cycled = true;
/// <summary>
/// Is it okay for this entity to directly transfer its valid ammunition into another provider?
/// </summary>
[ViewVariables(VVAccess.ReadWrite), DataField("mayTransfer")]
public bool MayTransfer = false;
}