Replace some to do with TODO (#30346)

Replace to do with TODO
This commit is contained in:
lzk
2024-07-25 10:04:03 +02:00
committed by GitHub
parent 50ba20c766
commit f56e4f6624
9 changed files with 14 additions and 14 deletions

View File

@@ -76,7 +76,7 @@ public sealed class ReagentProducerAnomalySystem : EntitySystem
if (anomaly.Severity >= 0.97) reagentProducingAmount *= component.SupercriticalReagentProducingModifier;
newSol.AddReagent(component.ProducingReagent, reagentProducingAmount);
_solutionContainer.TryAddSolution(component.Solution.Value, newSol); //TO DO - the container is not fully filled.
_solutionContainer.TryAddSolution(component.Solution.Value, newSol); // TODO - the container is not fully filled.
component.AccumulatedFrametime = 0;