(4b2d4213d) tweaks and fixes, part 777

This commit is contained in:
Joonas Rikkonen
2019-05-16 06:56:53 +03:00
parent 0cb7c1a5f7
commit a4b0a9abc9
12 changed files with 145 additions and 41 deletions
@@ -74,36 +74,6 @@ namespace Barotrauma
}
}
public override void Update(float deltaTime)
{
if (objectiveManager.CurrentObjective == this)
{
if (randomTimer > 0)
{
randomTimer -= deltaTime;
}
else
{
SetRandom();
}
}
}
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;