From cce7d6d7e621860708b9f6771d0aff31117f4e42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Fri, 18 Apr 2014 17:30:04 +0200 Subject: [PATCH] fixed missing LocationInit closes #5076 --- OpenRA.Mods.RA/Production.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/OpenRA.Mods.RA/Production.cs b/OpenRA.Mods.RA/Production.cs index 064b243d24..d5918b68ca 100755 --- a/OpenRA.Mods.RA/Production.cs +++ b/OpenRA.Mods.RA/Production.cs @@ -1,6 +1,6 @@ #region Copyright & License Information /* - * Copyright 2007-2011 The OpenRA Developers (see AUTHORS) + * Copyright 2007-2014 The OpenRA Developers (see AUTHORS) * This file is part of OpenRA, which is free software. It is made * available to you under the terms of the GNU General Public License * as published by the Free Software Foundation. For more information, @@ -59,6 +59,7 @@ namespace OpenRA.Mods.RA var newUnit = self.World.CreateActor(producee.Name, new TypeDictionary { new OwnerInit(self.Owner), + new LocationInit(exit), new CenterPositionInit(spawn), new FacingInit(initialFacing) });