* replace query with enumerator * remove unnecessary imports * prevent from toggling APC during event * all entity query i guess
12 lines
315 B
C#
12 lines
315 B
C#
using Content.Server.StationEvents.Events;
|
|
|
|
namespace Content.Server.StationEvents.Components;
|
|
|
|
/// <summary>
|
|
/// Added to APCs to prevent them from turning on until event end
|
|
/// </summary>
|
|
[RegisterComponent, Access(typeof(PowerGridCheckRule))]
|
|
public sealed class PowerGridCheckDisabledComponent : Component
|
|
{
|
|
}
|