Commit 79d1aa14a7367239dbad76844dd7160a5c5f0a60
1 parent
b0979fba
Exists in
master
fix order path assignment
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
units/game_experiment.pas
... | ... | @@ -754,9 +754,9 @@ constructor TExperiment.Create(AOwner: TComponent;AppPath:string); |
754 | 754 | var LDataPath : string; |
755 | 755 | begin |
756 | 756 | inherited Create(AOwner); |
757 | - LDataPath := AppPath+VAL_RESEARCHER+'es'+PathDelim+Researcher+PathDelim+ExperimentName+PathDelim; | |
758 | 757 | FTurnsRandom := TStringList.Create; |
759 | 758 | LoadExperimentFromResource(Self); |
759 | + LDataPath := AppPath+VAL_RESEARCHER+'es'+PathDelim+Researcher+PathDelim+ExperimentName+PathDelim; | |
760 | 760 | |
761 | 761 | // TODO: Allow custom target interlocking. Now just taking the first meta, as usual in the lab. |
762 | 762 | SetTargetInterlockingEvent; | ... | ... |