Merge pull request #5814 from Mailaender/vamos-vamos

Fixed units not moving to the RallyPoint
This commit is contained in:
Paul Chote
2014-07-05 20:00:47 +12:00
7 changed files with 18 additions and 19 deletions

4
OpenRA.Mods.RA/Effects/RallyPoint.cs Executable file → Normal file
View File

@@ -42,9 +42,9 @@ namespace OpenRA.Mods.RA.Effects
{
flag.Tick();
circles.Tick();
if (cachedLocation != rp.rallyPoint)
if (cachedLocation != rp.Location)
{
cachedLocation = rp.rallyPoint;
cachedLocation = rp.Location;
circles.Play("circles");
}