From 1a2e8d56d1b2d4a3c5f4d3604adc52995770ceba Mon Sep 17 00:00:00 2001 From: DeadlySurprise Date: Fri, 6 Mar 2015 14:30:45 +0100 Subject: [PATCH] Fixed radar not showing move/attack cursors --- OpenRA.Game/Widgets/VqaPlayerWidget.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/OpenRA.Game/Widgets/VqaPlayerWidget.cs b/OpenRA.Game/Widgets/VqaPlayerWidget.cs index 3afbbfe2b5..adfe956aec 100644 --- a/OpenRA.Game/Widgets/VqaPlayerWidget.cs +++ b/OpenRA.Game/Widgets/VqaPlayerWidget.cs @@ -156,6 +156,11 @@ namespace OpenRA.Widgets return RenderBounds.Contains(mi.Location) && Skippable; } + public override string GetCursor(int2 pos) + { + return null; + } + public void Play() { PlayThen(() => { });