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) {