fix: missing roguelike sami writer to json for resource updater

This commit is contained in:
Constrat
2025-04-25 17:26:27 +02:00
parent 12863a23e2
commit b3ca54cdda

View File

@@ -1413,6 +1413,10 @@ bool ocr_replace_overseas(const fs::path& input_dir, const fs::path& tasks_base_
roguelike_ofs << roguelike_json.format() << '\n';
roguelike_ofs.close();
std::ofstream roguelike_sami_ofs(roguelike_sami_path, std::ios::out);
roguelike_sami_ofs << roguelike_sami_json.format() << '\n';
roguelike_sami_ofs.close();
return true;
}