Fix copypasta bogosity that mono accepts as valid code.
This commit is contained in:
@@ -32,12 +32,13 @@ namespace OpenRA.Mods.RA.Render
|
|||||||
};
|
};
|
||||||
|
|
||||||
public AnimationState State { get; private set; }
|
public AnimationState State { get; private set; }
|
||||||
Mobile mobile = self.Trait<Mobile>();
|
Mobile mobile;
|
||||||
public RenderInfantry(Actor self)
|
public RenderInfantry(Actor self)
|
||||||
: base(self, () => self.Trait<IFacing>().Facing)
|
: base(self, () => self.Trait<IFacing>().Facing)
|
||||||
{
|
{
|
||||||
anim.Play("stand");
|
anim.Play("stand");
|
||||||
State = AnimationState.Idle;
|
State = AnimationState.Idle;
|
||||||
|
mobile = self.Trait<Mobile>();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Attacking(Actor self, Target target)
|
public void Attacking(Actor self, Target target)
|
||||||
|
|||||||
Reference in New Issue
Block a user