(ee538829d) Added docking tutorial video, removed highlight from old docking button.

This commit is contained in:
Joonas Rikkonen
2019-05-16 05:51:45 +03:00
parent 57302f7bb8
commit f02c7cdda9
13 changed files with 392 additions and 82 deletions
@@ -73,6 +73,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;