Add missing INotifyRemovedFromWorld impl to GlobalUpgradable

This commit is contained in:
Curtis Shmyr
2014-08-24 13:18:30 -06:00
parent 8ebe6345aa
commit 02a6c6ab77

View File

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