mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-30 03:57:35 +03:00
* 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 (cherry picked from commit d2f20d8955a25a32aa5fb9b3631a41921b464cd4)
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
|
|
{
|
|
}
|