Makes many thing that update on paused *not* do that. (#4938)

This commit is contained in:
Vera Aguilera Puerto
2021-10-18 14:58:34 +02:00
committed by GitHub
parent 30a912e54f
commit b904efb942
24 changed files with 27 additions and 27 deletions

View File

@@ -72,7 +72,7 @@ namespace Content.Server.Cloning
public override void Update(float frameTime)
{
foreach (var (cloning, power) in EntityManager.EntityQuery<CloningPodComponent, ApcPowerReceiverComponent>(true))
foreach (var (cloning, power) in EntityManager.EntityQuery<CloningPodComponent, ApcPowerReceiverComponent>())
{
if (cloning.UiKnownPowerState != power.Powered)
{
@@ -127,7 +127,7 @@ namespace Content.Server.Cloning
public void OnChangeMadeToDnaScans()
{
foreach (var cloning in EntityManager.EntityQuery<CloningPodComponent>(true))
foreach (var cloning in EntityManager.EntityQuery<CloningPodComponent>())
UpdateUserInterface(cloning);
}