From 91b612fa4790aa927da83f800298c90d53c2236e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Wed, 9 Jul 2014 06:17:49 +0200 Subject: [PATCH] ITeleportable does not exist anymore --- OpenRA.Mods.RA/Crate.cs | 1 - OpenRA.Mods.RA/Crates/SupportPowerCrateAction.cs | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/OpenRA.Mods.RA/Crate.cs b/OpenRA.Mods.RA/Crate.cs index ef8cb228e3..f6081bbb36 100644 --- a/OpenRA.Mods.RA/Crate.cs +++ b/OpenRA.Mods.RA/Crate.cs @@ -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; diff --git a/OpenRA.Mods.RA/Crates/SupportPowerCrateAction.cs b/OpenRA.Mods.RA/Crates/SupportPowerCrateAction.cs index c6440a6900..07c644bd7b 100644 --- a/OpenRA.Mods.RA/Crates/SupportPowerCrateAction.cs +++ b/OpenRA.Mods.RA/Crates/SupportPowerCrateAction.cs @@ -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) {