]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Update thruster for API change (#15642)
authormetalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
Sat, 22 Apr 2023 06:41:16 +0000 (16:41 +1000)
committerGitHub <noreply@github.com>
Sat, 22 Apr 2023 06:41:16 +0000 (16:41 +1000)
Content.Server/Shuttles/Systems/ThrusterSystem.cs

index 7903392296c1a3cceff60cddcb449a20f6143837..1157f7427bb461fcaa2bb9f693a1a010eb909090 100644 (file)
@@ -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);
                 }