* Remove wheelchairs Vehicle code is dogwater and wheelchairs just keeps exposing edgecases. If someone wants it brought it back they can do vehicle refactor. * Also this one * Remove vehicles * goodbye vehicles * Remove this check * sasd * Cronch * Add sprites back * jani
12 lines
335 B
C#
12 lines
335 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Traits.Assorted;
|
|
|
|
/// <summary>
|
|
/// Set player speed to zero and standing state to down, simulating leg paralysis.
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent, Access(typeof(LegsParalyzedSystem))]
|
|
public sealed partial class LegsParalyzedComponent : Component
|
|
{
|
|
}
|