Update content vectors to numerics (#17759)
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
using System.Linq;
|
||||
using System.Numerics;
|
||||
using System.Reflection;
|
||||
using Content.Client.Construction;
|
||||
using Content.Server.Atmos;
|
||||
@@ -532,7 +533,7 @@ public abstract partial class InteractionTest
|
||||
await Server.WaitPost(() =>
|
||||
{
|
||||
// Get all entities left behind by deconstruction
|
||||
entities = lookup.GetEntitiesIntersecting(MapId, Box2.CentredAroundZero((10, 10)), flags);
|
||||
entities = lookup.GetEntitiesIntersecting(MapId, Box2.CentredAroundZero(new Vector2(10, 10)), flags);
|
||||
|
||||
var xformQuery = SEntMan.GetEntityQuery<TransformComponent>();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user