* Insert when held item has no interaction with stored item * Decouple inserting on failure * Add component that stores the used entity when no interaction happened * Add prediction
9 lines
200 B
C#
9 lines
200 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Storage.Components;
|
|
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class StoreAfterFailedInteractComponent : Component
|
|
{
|
|
}
|