Merge pull request #2095 from metalgearsloth/ai_melee

Fix AI melee combat
This commit is contained in:
Víctor Aguilera Puerto
2020-09-15 12:57:55 +02:00
committed by GitHub

View File

@@ -198,7 +198,7 @@ namespace Content.Server.GameObjects.EntitySystems.Click
if (entity.TryGetComponent(out CombatModeComponent combatMode) && combatMode.IsInCombatMode)
{
DoAttack(entity, coords, false);
DoAttack(entity, coords, false, uid);
}
else
{