(0bd92547e) Show ping direction when adjusting the direction slider even if directional ping is not enabled. Closes #1298

This commit is contained in:
Joonas Rikkonen
2019-04-01 22:48:47 +03:00
parent 885c30f70d
commit a0e1ba52eb
6 changed files with 107 additions and 63 deletions
@@ -656,13 +656,6 @@ namespace Barotrauma
msg.Timer -= deltaTime;
msg.Pos += msg.Velocity * deltaTime;
}
foreach (GUIMessage msg in messages)
{
if (!msg.WorldSpace) continue;
msg.Timer -= deltaTime;
msg.Pos += msg.Velocity * deltaTime;
}
}
messages.RemoveAll(m => m.Timer <= 0.0f);