Fix Fultons losing their beacon when split (#20179)

This commit is contained in:
DrSmugleaf
2023-09-17 17:22:26 -07:00
committed by GitHub
parent d4abaf277a
commit c558f00a74
4 changed files with 21 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
namespace Content.Shared.Stacks;
/// <summary>
/// Raised on the original stack entity when it is split to create another.
/// </summary>
/// <param name="NewId">The entity id of the new stack.</param>
[ByRefEvent]
public readonly record struct StackSplitEvent(EntityUid NewId);