Fix an oversight in the update rule for AttackBomber's FacingTolerance
This commit is contained in:
committed by
Matthias Mailänder
parent
6556b33cef
commit
f3bc450e20
@@ -21,7 +21,7 @@ namespace OpenRA.Mods.Common.UpdateRules.Rules
|
||||
|
||||
public override IEnumerable<string> UpdateActorNode(ModData modData, MiniYamlNode actorNode)
|
||||
{
|
||||
foreach (var attackBomber in actorNode.ChildrenMatching("AttackBomber"))
|
||||
foreach (var attackBomber in actorNode.ChildrenMatching("AttackBomber", includeRemovals: false))
|
||||
{
|
||||
var facingTolerance = attackBomber.LastChildMatching("FacingTolerance");
|
||||
if (facingTolerance != null)
|
||||
|
||||
Reference in New Issue
Block a user