Rename HeliReturn

Rename HeliReturn to HeliReturnToBase to keep somewhat with the convention established for Plane- against Heli- oriented traits.
This commit is contained in:
Pavel Penev
2015-09-05 18:01:35 +03:00
parent 15a5bde7e7
commit 0ee38de4bb
5 changed files with 7 additions and 7 deletions

View File

@@ -43,7 +43,7 @@ namespace OpenRA.Mods.Common.Scripting
if (isPlane)
Self.QueueActivity(new ReturnToBase(Self, airfield));
else
Self.QueueActivity(new HeliReturn(Self));
Self.QueueActivity(new HeliReturnToBase(Self));
}
}
}