Files
tbd-station-14/Content.Server/Power/Pow3r/NoOpSolver.cs
Pieter-Jan Briers 290bffceec Make pow3r validation logic available on release (#36075)
I want to run this on live servers. It's behind a power_validate command, it still doesn't automatically get ran outside debug otherwise.
2025-03-25 10:02:39 -07:00

18 lines
378 B
C#

using Robust.Shared.Threading;
namespace Content.Server.Power.Pow3r
{
public sealed class NoOpSolver : IPowerSolver
{
public void Tick(float frameTime, PowerState state, IParallelManager parallel)
{
// Literally nothing.
}
public void Validate(PowerState state)
{
// Literally nothing.
}
}
}