Fix skeletons spawning in folded body bags (#37151)
* Fix skeleton spawning * Add comments * Fix the comments Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com>
This commit is contained in:
@@ -146,9 +146,18 @@ public sealed class EntityStorageComponentState : ComponentState
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Raised on the entity being inserted whenever checking if an entity can be inserted into an entity storage.
|
||||
/// </summary>
|
||||
[ByRefEvent]
|
||||
public record struct InsertIntoEntityStorageAttemptEvent(EntityUid ItemToInsert, bool Cancelled = false);
|
||||
|
||||
/// <summary>
|
||||
/// Raised on the entity storage whenever checking if an entity can be inserted into it.
|
||||
/// </summary>
|
||||
[ByRefEvent]
|
||||
public record struct EntityStorageInsertedIntoAttemptEvent(EntityUid ItemToInsert, bool Cancelled = false);
|
||||
|
||||
[ByRefEvent]
|
||||
public record struct StorageOpenAttemptEvent(EntityUid User, bool Silent, bool Cancelled = false);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user