Fix missing base method call in Carryable.

This commit is contained in:
Paul Chote
2016-12-04 10:46:19 +00:00
parent da6fd74881
commit 35780cadd0

View File

@@ -52,6 +52,8 @@ namespace OpenRA.Mods.Common.Traits
protected override void Created(Actor self)
{
upgradeManager = self.Trait<UpgradeManager>();
base.Created(self);
}
public virtual void Attached(Actor self)