Downstream fixes for #41966

This commit is contained in:
BarryNorfolk 2026-02-07 10:56:21 +01:00
parent a4e9f24572
commit 6d1070d87f
1 changed files with 1 additions and 1 deletions

View File

@ -26,6 +26,6 @@ public sealed class FireOnLandSystem : EntitySystem
var dir = gc.DefaultDirection;
dir = new Vector2(-dir.Y, dir.X); // 90 degrees counter-clockwise, guns shoot down by default
_gunSystem.AttemptShoot(ent, ent, gc, new EntityCoordinates(ent, dir));
_gunSystem.AttemptShoot(ent, (ent, gc), new EntityCoordinates(ent, dir));
}
}