(0f7b2ad10) Incremented version number & updated changelog

This commit is contained in:
Joonas Rikkonen
2019-05-16 06:47:40 +03:00
parent 58d60c9162
commit 53d78d2a2a
14 changed files with 407 additions and 134 deletions
@@ -88,6 +88,21 @@ namespace Barotrauma
}
}
public override void Update(float deltaTime)
{
if (objectiveManager.CurrentObjective == this)
{
if (randomTimer > 0)
{
randomTimer -= deltaTime;
}
else
{
SetRandom();
}
}
}
public override bool IsCompleted() => false;
public override bool CanBeCompleted => true;