Skip to content

Commit 502b6cc

Browse files
hotfix: Template setup no longer fails
1 parent e5e0d22 commit 502b6cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Genres/0 Setup/SetupManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public static void MoveProjectFiles(Genre genre, string pathFrom, string pathTo,
2929
// Moves the main scene file from its original location to a new location
3030
File.Move(
3131
Path.Combine(pathFrom, folderNames[genre], mainSceneName),
32-
Path.Combine(pathTo, "Scenes", mainSceneName));
32+
Path.Combine(pathTo, mainSceneName));
3333

3434
// Move all files relevant to this genre
3535
MoveFilesAndPreserveFolderStructure(Path.Combine(pathFrom, folderNames[genre]), Path.Combine("Genres", folderNames[genre]));

0 commit comments

Comments
 (0)