(874293f6d) Fixed incorrect reward amount in the "Chemical shipment" description

This commit is contained in:
Joonas Rikkonen
2019-05-16 06:58:45 +03:00
parent 501c3f9ae5
commit 86ddfb73d5
9 changed files with 117 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;