(9db186429) Double the wall priorioties for crawlers and mudraptors, so that they remain effectively the same after the code changes.

This commit is contained in:
Joonas Rikkonen
2019-04-01 22:49:28 +03:00
parent 3062e4c705
commit 9fffb05625
3 changed files with 85 additions and 45 deletions
@@ -656,6 +656,13 @@ 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);