disabled weather

This commit is contained in:
Ed
2025-04-08 18:53:16 +03:00
parent d201dc0695
commit b957f777fd
2 changed files with 6 additions and 0 deletions

View File

@@ -24,6 +24,8 @@ public sealed class CP14WeatherRule : StationEventSystem<CP14WeatherRuleComponen
{
base.Started(uid, component, gameRule, args);
return;
var query = EntityQueryEnumerator<MapComponent, BecomesStationComponent>();
while (query.MoveNext(out var mapUid, out var map, out var station))
{
@@ -43,6 +45,8 @@ public sealed class CP14WeatherRule : StationEventSystem<CP14WeatherRuleComponen
{
base.Ended(uid, component, gameRule, args);
return;
var query = EntityQueryEnumerator<MapComponent, BecomesStationComponent>();
while (query.MoveNext(out var mapUid, out var map, out var station))
{

View File

@@ -19,6 +19,8 @@ public sealed class CP14WeatherControllerSystem : EntitySystem
{
base.Update(frameTime);
return;
var query = EntityQueryEnumerator<CP14WeatherControllerComponent>();
while (query.MoveNext(out var uid, out var weather))
{