fix bogus base-cycler

This commit is contained in:
Chris Forbes
2010-10-18 18:07:08 +13:00
parent c8ec5f3579
commit 09f7778294

View File

@@ -163,7 +163,7 @@ namespace OpenRA.Widgets
var next = bases
.Select( b => b.Actor )
.SkipWhile(b => world.Selection.Actors.Contains(b))
.SkipWhile(b => !world.Selection.Actors.Contains(b))
.Skip(1)
.FirstOrDefault();