(ef5df81dc) Fixed personal slots not being visible in the sub editor

This commit is contained in:
Joonas Rikkonen
2019-05-16 06:06:24 +03:00
parent 606e1f6560
commit 5c90e26209
13 changed files with 331 additions and 142 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;