From c627a59b5463f4e450d3eb6aa2e00ab082211e6b Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Wed, 16 Jan 2019 18:26:08 +0000 Subject: [PATCH] Fix self parameter name in DrawLineToTarget. --- OpenRA.Mods.Common/Traits/Render/DrawLineToTarget.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.Common/Traits/Render/DrawLineToTarget.cs b/OpenRA.Mods.Common/Traits/Render/DrawLineToTarget.cs index e6a70a952d..5ea82dc0e7 100644 --- a/OpenRA.Mods.Common/Traits/Render/DrawLineToTarget.cs +++ b/OpenRA.Mods.Common/Traits/Render/DrawLineToTarget.cs @@ -85,7 +85,7 @@ namespace OpenRA.Mods.Common.Traits bool IRenderAboveShroudWhenSelected.SpatiallyPartitionable { get { return false; } } - void INotifyBecomingIdle.OnBecomingIdle(Actor a) + void INotifyBecomingIdle.OnBecomingIdle(Actor self) { targets = null; }