Merge pull request #6340 from cjshmyr/fix6214

Add missing INotifyRemovedFromWorld impl to GlobalUpgradable
This commit is contained in:
obrakmann
2014-08-26 16:42:47 +02:00

View File

@@ -25,7 +25,7 @@ namespace OpenRA.Mods.RA
public object Create(ActorInitializer init) { return new GlobalUpgradable(init.self, this); }
}
public class GlobalUpgradable : INotifyAddedToWorld
public class GlobalUpgradable : INotifyAddedToWorld, INotifyRemovedFromWorld
{
readonly GlobalUpgradableInfo info;
readonly GlobalUpgradeManager manager;