Fix OreRefinery and TiberiumRefinery names
This commit is contained in:
@@ -72,7 +72,7 @@
|
||||
<Compile Include="Effects\IonCannon.cs" />
|
||||
<Compile Include="Traits\AttackPopupTurreted.cs" />
|
||||
<Compile Include="Traits\Buildings\ProductionAirdrop.cs" />
|
||||
<Compile Include="Traits\Buildings\TiberiumRefinery.cs" />
|
||||
<Compile Include="Traits\Buildings\TiberianDawnRefinery.cs" />
|
||||
<Compile Include="Traits\PoisonedByTiberium.cs" />
|
||||
<Compile Include="Traits\Render\RenderGunboat.cs" />
|
||||
<Compile Include="Traits\Render\WithCargo.cs" />
|
||||
|
||||
@@ -11,18 +11,17 @@
|
||||
using OpenRA.Activities;
|
||||
using OpenRA.Mods.Cnc.Activities;
|
||||
using OpenRA.Mods.RA.Traits;
|
||||
using OpenRA.Traits;
|
||||
|
||||
namespace OpenRA.Mods.Cnc.Traits
|
||||
{
|
||||
public class TiberiumRefineryInfo : OreRefineryInfo
|
||||
public class TiberianDawnRefineryInfo : RefineryInfo
|
||||
{
|
||||
public override object Create(ActorInitializer init) { return new TiberiumRefinery(init.Self, this); }
|
||||
public override object Create(ActorInitializer init) { return new TiberianDawnRefinery(init.Self, this); }
|
||||
}
|
||||
|
||||
public class TiberiumRefinery : OreRefinery
|
||||
public class TiberianDawnRefinery : Refinery
|
||||
{
|
||||
public TiberiumRefinery(Actor self, TiberiumRefineryInfo info) : base(self, info) { }
|
||||
public TiberianDawnRefinery(Actor self, RefineryInfo info) : base(self, info) { }
|
||||
|
||||
public override Activity DockSequence(Actor harv, Actor self)
|
||||
{
|
||||
Reference in New Issue
Block a user