(7da87677c) tweaks and fixes

This commit is contained in:
Joonas Rikkonen
2019-05-16 06:29:49 +03:00
parent 2ac3f597ca
commit e074a5bf73
12 changed files with 331 additions and 115 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;