Try fix collision mispredicts (#16298)

This commit is contained in:
Leon Friedrich
2023-05-13 02:02:50 +12:00
committed by GitHub
parent f1a81d9a8d
commit d228f971b0
11 changed files with 134 additions and 214 deletions

View File

@@ -6,10 +6,10 @@ namespace Content.Shared.Movement.Components;
/// <summary>
/// Raises the engine movement inputs for a particular entity onto the designated entity
/// </summary>
[RegisterComponent, NetworkedComponent]
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true)]
[Access(typeof(SharedMoverController))]
public sealed class RelayInputMoverComponent : Component
public sealed partial class RelayInputMoverComponent : Component
{
[ViewVariables]
public EntityUid? RelayEntity;
[ViewVariables, AutoNetworkedField]
public EntityUid RelayEntity;
}