selection persists across OG changes

This commit is contained in:
Chris Forbes
2010-02-08 19:05:49 +13:00
parent 853f9ae6d5
commit 37af0f2f04
4 changed files with 45 additions and 53 deletions

View File

@@ -153,9 +153,9 @@ namespace OpenRa
if (orderManager.IsReadyForNextFrame)
{
orderManager.Tick( world );
if (controller.orderGenerator != null)
controller.orderGenerator.Tick( world );
orderManager.Tick(world);
controller.orderGenerator.Tick(world);
controller.selection.Tick(world);
world.Tick();
}