From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sat, 22 Apr 2023 06:41:16 +0000 (+1000) Subject: Update thruster for API change (#15642) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=0859101afe3cb995daa51e82f5d82ae00fe9a9de;p=space-station-14.git Update thruster for API change (#15642) --- 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); }