From b1571ad17ac77bc973773620196af568a0fed4f2 Mon Sep 17 00:00:00 2001 From: abcdefg30 Date: Thu, 5 Dec 2019 22:37:52 +0100 Subject: [PATCH] Make Parachutable public --- OpenRA.Mods.Common/Traits/Parachutable.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.Common/Traits/Parachutable.cs b/OpenRA.Mods.Common/Traits/Parachutable.cs index 1c60a24d6c..59ac4f043c 100644 --- a/OpenRA.Mods.Common/Traits/Parachutable.cs +++ b/OpenRA.Mods.Common/Traits/Parachutable.cs @@ -57,7 +57,7 @@ namespace OpenRA.Mods.Common.Traits public object Create(ActorInitializer init) { return new Parachutable(init.Self, this); } } - class Parachutable : INotifyCreated, INotifyParachute + public class Parachutable : INotifyCreated, INotifyParachute { readonly ParachutableInfo info; readonly IPositionable positionable;