Merge pull request #5016 from obrakmann/disable-shellmaps

Disable shellmaps temporarily
This commit is contained in:
Matthias Mailänder
2014-04-03 17:56:23 +02:00
4 changed files with 19 additions and 5 deletions

View File

@@ -108,7 +108,9 @@ namespace OpenRA.Graphics
{
RefreshPalette();
if (world.IsShellmap && !Game.Settings.Game.ShowShellmap)
// workaround for #4965
// if (world.IsShellmap && !Game.Settings.Game.ShowShellmap)
if (world.IsShellmap)
return;
var renderables = GenerateRenderables();

View File

@@ -213,7 +213,9 @@ namespace OpenRA
public void Tick()
{
if (!Paused && (!IsShellmap || Game.Settings.Game.ShowShellmap))
// workaround for #4965
// if (!Paused && (!IsShellmap || Game.Settings.Game.ShowShellmap))
if (!Paused && !IsShellmap)
{
WorldTick++;