(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
@@ -417,7 +417,7 @@ namespace Barotrauma
{
target = limb.character;
}
if (target != null && target == Enemy)
if (target != null && (target == Enemy || !HumanAIController.IsFriendly(target)))
{
character.SetInput(InputType.Shoot, false, true);
Weapon.Use(deltaTime, character);