* Optimise emergency lights a bit * Fixes * Delete the failing test, sinple * Revert "Delete the failing test, sinple" This reverts commit 7d9e3a3bb6975c15add2987e39e0d3ba85d88be3. * Start server and fix test It just werks
13 lines
287 B
C#
13 lines
287 B
C#
using Content.Shared.Light.Component;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Client.Light.Components
|
|
{
|
|
[RegisterComponent]
|
|
[NetworkedComponent]
|
|
public class EmergencyLightComponent : SharedEmergencyLightComponent
|
|
{
|
|
}
|
|
}
|