Tweak "Help a fellow traitor" objective to allow yellowtexting (#37679)

init
This commit is contained in:
ScarKy0
2025-05-21 22:45:34 +02:00
committed by GitHub
parent acccf66259
commit 572b20464c
2 changed files with 2 additions and 2 deletions

View File

@@ -53,6 +53,6 @@ public sealed class HelpProgressConditionSystem : EntitySystem
// require 50% completion for this one to be complete
var completion = total / max;
return completion >= 0.5f ? 1f : completion / 0.5f;
return completion;
}
}