more
This commit is contained in:
@@ -17,7 +17,7 @@ namespace OpenRa.Game.Traits.Activities
|
||||
Sound.Play("placbldg.aud");
|
||||
Sound.Play("build5.aud");
|
||||
}
|
||||
Game.world.Add( new Actor( Rules.UnitInfo["fact"], self.Location - new int2( 1, 1 ), self.Owner ) );
|
||||
Game.world.Add( new Actor( "fact", self.Location - new int2( 1, 1 ), self.Owner ) );
|
||||
} );
|
||||
return this;
|
||||
}
|
||||
|
||||
@@ -14,7 +14,7 @@ namespace OpenRa.Game.Traits.Activities
|
||||
ns.Sold(self);
|
||||
w.Remove(self);
|
||||
|
||||
var mcv = new Actor(Rules.UnitInfo["MCV"], self.Location + new int2(1, 1), self.Owner);
|
||||
var mcv = new Actor("mcv", self.Location + new int2(1, 1), self.Owner);
|
||||
mcv.traits.Get<Unit>().Facing = 96;
|
||||
w.Add(mcv);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user