EditorPaths: Fix creating 'export_templates' folder.

This commit is contained in:
Rémi Verschelde 2022-07-28 20:33:22 +02:00
parent 1c820f19b1
commit 73c11ab31a

View file

@ -153,8 +153,8 @@ EditorPaths::EditorPaths() {
}
}
if (!dir->dir_exists("templates")) {
dir->make_dir("templates");
if (!dir->dir_exists("export_templates")) {
dir->make_dir("export_templates");
}
}