don't show order lines when selecting idle (attackmoving) actors

closes #5039
This commit is contained in:
Matthias Mailänder
2014-05-16 16:46:20 +02:00
parent 28c0310357
commit 7b90d321a7
2 changed files with 4 additions and 1 deletions

View File

@@ -51,6 +51,9 @@ namespace OpenRA.Traits
public void Selected(Actor a)
{
if (a.IsIdle)
return;
// Reset the order line timeout.
lifetime = Info.Ticks;
}