Skip to content

Commit

Permalink
Fix bruteforce path
Browse files Browse the repository at this point in the history
  • Loading branch information
architdate committed Jun 30, 2018
1 parent 3171ed0 commit 0ebf39b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AutoLegalityMod/PKSMAutoLegality.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1363,7 +1363,7 @@ private List<List<string>> generateEvoLists2()
List<List<string>> evoList = new List<List<string>>();
List<string> blankList = new List<string>();
var assembly = Assembly.GetExecutingAssembly();
var resourceName = "AutoLegalityMod.Resources.text.evolutions.txt";
var resourceName = "AutoLegalityMod.Resources.txt.evolutions.txt";
System.IO.Stream stream = assembly.GetManifestResourceStream(resourceName);
System.IO.StreamReader file = new System.IO.StreamReader(stream);
while ((line = file.ReadLine()) != null)
Expand Down

0 comments on commit 0ebf39b

Please sign in to comment.