(92723d062) Increase Hammerhead head attack dmg to characters.

This commit is contained in:
Joonas Rikkonen
2019-03-27 20:57:10 +02:00
parent 7a5f589639
commit 8a22dbfebd
4 changed files with 192 additions and 3 deletions
@@ -670,6 +670,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);