Remove 700 usages of Component.Owner (#21100)

This commit is contained in:
DrSmugleaf
2023-10-19 12:34:31 -07:00
committed by GitHub
parent 5825ffb95c
commit f560f88eb5
261 changed files with 2291 additions and 2036 deletions

View File

@@ -3,7 +3,6 @@ using Content.Server.Kitchen.Components;
using Content.Shared.Hands.EntitySystems;
using Content.Shared.Interaction;
using Content.Shared.Random;
using Content.Shared.Random.Helpers;
using Robust.Shared.Containers;
namespace Content.Server.Botany.Systems;
@@ -39,7 +38,7 @@ public sealed class LogSystem : EntitySystem
else
{
var xform = Transform(plank);
_containerSystem.AttachParentToContainerOrGrid(xform);
_containerSystem.AttachParentToContainerOrGrid((plank, xform));
xform.LocalRotation = 0;
_randomHelper.RandomOffset(plank, 0.25f);
}

View File

@@ -58,13 +58,14 @@ public sealed class PlantHolderSystem : EntitySystem
{
base.Update(frameTime);
foreach (var plantHolder in EntityQuery<PlantHolderComponent>())
var query = EntityQueryEnumerator<PlantHolderComponent>();
while (query.MoveNext(out var uid, out var plantHolder))
{
if (plantHolder.NextUpdate > _gameTiming.CurTime)
continue;
plantHolder.NextUpdate = _gameTiming.CurTime + plantHolder.UpdateDelay;
Update(plantHolder.Owner, plantHolder);
Update(uid, plantHolder);
}
}