diff options
| author | KiritoDv <kiritodev01@gmail.com> | 2024-03-29 03:10:01 -0600 |
|---|---|---|
| committer | KiritoDv <kiritodev01@gmail.com> | 2024-03-29 03:10:01 -0600 |
| commit | f4506380ee8b4436a903b47c76793fbcf2e20e0f (patch) | |
| tree | e6eed8020ff4cef4d0f126c5716bcfea490b3d14 | |
| parent | 81b8f66587f4f04c8c5db565dd6380ee692d7539 (diff) | |
Fixed file detection on modding export factory
| -rw-r--r-- | src/Companion.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Companion.cpp b/src/Companion.cpp index f3b782f..0dcecc8 100644 --- a/src/Companion.cpp +++ b/src/Companion.cpp @@ -912,8 +912,9 @@ void Companion::Process() { } file.close(); - this->gHashNode[this->gCurrentFile]["extracted"][ExportTypeToString(this->gConfig.exporterType)] = true; } + + this->gHashNode[this->gCurrentFile]["extracted"][ExportTypeToString(this->gConfig.exporterType)] = true; } if(wrapper != nullptr) { |
