Finish crafting log helper window

This commit is contained in:
Asriel Camora
2023-10-10 18:38:01 -07:00
parent 9a924c8049
commit 1da2acc5c5
7 changed files with 288 additions and 34 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ public struct SimulationNode
return null;
static float Apply(float bonus, float value, float target) =>
bonus * Math.Min(1f, value / target);
bonus * (target > 0 ? Math.Min(1f, value / target) : 1);
var progressScore = Apply(
config.ScoreProgress,