Files
wwdpublic/Content.Server/Chemistry/Components/SolutionInjectOnEmbedComponent.cs
Spatison 2a10c02eb5 No spead merge (#475)
* Revert "[GoobPort] WIZ REAL (#465)"

This reverts commit 091a8ff433.

* fix local
2025-04-26 10:50:32 +03:00

16 lines
522 B
C#

namespace Content.Server.Chemistry.Components;
/// <summary>
/// Used for embeddable entities that should try to inject a
/// contained solution into a target when they become embedded in it.
/// </summary>
[RegisterComponent]
public sealed partial class SolutionInjectOnEmbedComponent : BaseSolutionInjectOnEventComponent
{
/// <summary>
/// Used to override the PierceArmor setting when fired from a SyringeGun.
/// </summary>
[ViewVariables(VVAccess.ReadWrite)]
public bool? PierceArmorOverride;
}