Skip to content

Commit

Permalink
Fix cursors over closed radarbin
Browse files Browse the repository at this point in the history
  • Loading branch information
pchote committed Jul 22, 2010
1 parent 37a5571 commit 3e493cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OpenRA.Game/Widgets/RadarBinWidget.cs
Expand Up @@ -55,8 +55,8 @@ public void SetWorld(World world)

public override string GetCursor(int2 pos)
{
if (world == null)
return "default";
if (world == null || !hasRadar)
return null;

var loc = MinimapPixelToCell(pos);

Expand Down

0 comments on commit 3e493cb

Please sign in to comment.