Change AttackWander trait lookup
AttackMove is required and therefore can't be null, so the 'OrDefault' was redundant.
This commit is contained in:
@@ -27,7 +27,7 @@ namespace OpenRA.Mods.Common.Traits
|
|||||||
public AttackWander(Actor self, AttackWanderInfo info)
|
public AttackWander(Actor self, AttackWanderInfo info)
|
||||||
: base(self, info)
|
: base(self, info)
|
||||||
{
|
{
|
||||||
attackMove = self.TraitOrDefault<AttackMove>();
|
attackMove = self.Trait<AttackMove>();
|
||||||
}
|
}
|
||||||
|
|
||||||
public override void DoAction(Actor self, CPos targetCell)
|
public override void DoAction(Actor self, CPos targetCell)
|
||||||
|
|||||||
Reference in New Issue
Block a user