Public API changes to IPhysBody and MoverController.

This commit is contained in:
Acruid
2020-07-21 23:42:33 -07:00
parent 551973fbb9
commit f34b454923
4 changed files with 5 additions and 5 deletions

View File

@@ -39,7 +39,7 @@ namespace Content.Shared.GameObjects.Components.Projectiles
public bool PreventCollide(IPhysBody collidedwith)
{
return IgnoreShooter && collidedwith.Owner.Uid == Shooter;
return IgnoreShooter && collidedwith.Entity.Uid == Shooter;
}
}
}