move Game.IsStarted to World.GameHasStarted

This commit is contained in:
Bob
2010-04-13 20:05:34 +12:00
parent e224c64ccc
commit 2a4460213c
5 changed files with 6 additions and 6 deletions

View File

@@ -129,7 +129,7 @@ namespace OpenRA
public void Tick(World world)
{
if (!Game.IsStarted) return;
if (!world.GameHasStarted) return;
if (world.LocalPlayer == null) return;
TickPaletteAnimation();