diff --git a/OpenRA.Mods.RA/Crate.cs b/OpenRA.Mods.RA/Crate.cs index 172b98e1ad..9f5515e3c8 100644 --- a/OpenRA.Mods.RA/Crate.cs +++ b/OpenRA.Mods.RA/Crate.cs @@ -48,7 +48,10 @@ namespace OpenRA.Mods.RA { this.self = init.self; if (init.Contains()) - this.Location = init.Get(); + { + this.Location = init.Get(); + PxPosition = Util.CenterOfCell(Location); + } this.Info = info;