(203af66e8) Allow to attack other enemies too.

This commit is contained in:
Joonas Rikkonen
2019-05-16 05:56:32 +03:00
parent fe5f386358
commit 6b1500aa8d
13 changed files with 170 additions and 236 deletions
@@ -503,6 +503,18 @@ namespace Barotrauma
}
}
foreach (MapEntity e in MapEntity.mapEntityList)
{
if (Vector2.Distance(e.Position, HiddenSubPosition) > 20000)
{
//move disabled items (wires, items inside containers) inside the sub
if (e is Item item && item.body != null && !item.body.Enabled)
{
item.SetTransform(ConvertUnits.ToSimUnits(HiddenSubPosition), 0.0f);
}
}
}
foreach (MapEntity e in MapEntity.mapEntityList)
{
if (Vector2.Distance(e.Position, HiddenSubPosition) > 20000)