ITeleportable does not exist anymore

This commit is contained in:
Matthias Mailänder
2014-07-09 06:17:49 +02:00
parent 0502d90a05
commit 91b612fa47
2 changed files with 1 additions and 2 deletions

View File

@@ -27,7 +27,6 @@ namespace OpenRA.Mods.RA
public object Create(ActorInitializer init) { return new Crate(init, this); }
}
// ITeleportable is required for paradrop
class Crate : ITick, IPositionable, ICrushable, ISync, INotifyParachuteLanded, INotifyAddedToWorld, INotifyRemovedFromWorld
{
readonly Actor self;

View File

@@ -28,7 +28,7 @@ namespace OpenRA.Mods.RA.Crates
public SupportPowerCrateAction(Actor self, SupportPowerCrateActionInfo info)
: base(self, info) { Info = info; }
// The free unit crate requires same race, and the actor to be at least ITeleportable.
// The free unit crate requires same race and the actor needs to be mobile.
// We want neither of these properties for crate power proxies.
public override void Activate(Actor collector)
{