diff --git a/OpenRA.Game/OpenRA.Game.csproj b/OpenRA.Game/OpenRA.Game.csproj
index 095ce962a1..808acb6966 100755
--- a/OpenRA.Game/OpenRA.Game.csproj
+++ b/OpenRA.Game/OpenRA.Game.csproj
@@ -134,7 +134,6 @@
-
diff --git a/OpenRA.Game/Traits/Render/RenderUnit.cs b/OpenRA.Game/Traits/Render/RenderUnit.cs
index e631ea03cb..ebbdd89a16 100644
--- a/OpenRA.Game/Traits/Render/RenderUnit.cs
+++ b/OpenRA.Game/Traits/Render/RenderUnit.cs
@@ -28,7 +28,7 @@ namespace OpenRA.Traits
public override object Create(Actor self) { return new RenderUnit(self); }
}
- class RenderUnit : RenderSimple, INotifyDamage
+ public class RenderUnit : RenderSimple, INotifyDamage
{
public RenderUnit(Actor self)
: base(self, () => self.traits.Get().Facing)
diff --git a/OpenRA.Mods.RA/OpenRA.Mods.RA.csproj b/OpenRA.Mods.RA/OpenRA.Mods.RA.csproj
index 1a3f84762a..a5c89c9799 100644
--- a/OpenRA.Mods.RA/OpenRA.Mods.RA.csproj
+++ b/OpenRA.Mods.RA/OpenRA.Mods.RA.csproj
@@ -55,6 +55,7 @@
+
diff --git a/OpenRA.Game/Traits/OreRefinery.cs b/OpenRA.Mods.RA/OreRefinery.cs
old mode 100644
new mode 100755
similarity index 94%
rename from OpenRA.Game/Traits/OreRefinery.cs
rename to OpenRA.Mods.RA/OreRefinery.cs
index 468ad14b29..fb337ae35b
--- a/OpenRA.Game/Traits/OreRefinery.cs
+++ b/OpenRA.Mods.RA/OreRefinery.cs
@@ -18,9 +18,10 @@
*/
#endregion
+using OpenRA.Traits;
using OpenRA.Traits.Activities;
-namespace OpenRA.Traits
+namespace OpenRA.Mods.RA
{
class OreRefineryInfo : ITraitInfo
{