Changeset - 2e8a10efff43
[Not reviewed]
default
0 1 0
Jason Maltzen (jmaltzen) - 9 years ago 2015-12-31 05:53:03
jason.maltzen@unsanctioned.net
Move the check for template directory before creating profile folder.
1 file changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
PlayerProfile.cs
Show inline comments
...
 
@@ -115,7 +115,4 @@ namespace DesertPaintLab
 
		public bool Initialize()
 
		{
 
			// Create new directory.
 
			System.IO.Directory.CreateDirectory(directory);
 
				
 
			// Copy template files into new directory.
 
			string templatePath = FileUtils.FindApplicationResourceDirectory("template");
...
 
@@ -127,4 +124,7 @@ namespace DesertPaintLab
 
            }
 

 
			// Create new directory.
 
			System.IO.Directory.CreateDirectory(directory);
 
		    
 
			DirectoryInfo di = new DirectoryInfo(templatePath);
 
			FileInfo[] templateFiles = di.GetFiles();
0 comments (0 inline, 0 general)