From 0859101afe3cb995daa51e82f5d82ae00fe9a9de Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sat, 22 Apr 2023 16:41:16 +1000 Subject: [PATCH] Update thruster for API change (#15642) --- Content.Server/Shuttles/Systems/ThrusterSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Shuttles/Systems/ThrusterSystem.cs b/Content.Server/Shuttles/Systems/ThrusterSystem.cs index 7903392296..1157f7427b 100644 --- a/Content.Server/Shuttles/Systems/ThrusterSystem.cs +++ b/Content.Server/Shuttles/Systems/ThrusterSystem.cs @@ -270,7 +270,7 @@ public sealed class ThrusterSystem : EntitySystem component.BurnPoly.Count > 0) { var shape = new PolygonShape(); - shape.SetVertices(component.BurnPoly); + shape.Set(component.BurnPoly); _fixtureSystem.TryCreateFixture(uid, shape, BurnFixture, hard: false, collisionLayer: (int) CollisionGroup.FullTileMask, body: physicsComponent); } -- 2.51.2