Skip to content

Commit

Permalink
performance update
Browse files Browse the repository at this point in the history
  • Loading branch information
lgund committed Feb 27, 2021
1 parent 7e3f5d1 commit 22cd681
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
13 changes: 6 additions & 7 deletions Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ static void ParseFiles()
Value = s
});
engramFile.Add(s);
continue;
}
if (filename.StartsWith("BP_"))
{
Expand All @@ -141,6 +142,7 @@ static void ParseFiles()
Value = s
});
blueprintFile.Add(s);
continue;
}
if (filename.StartsWith("PrimalItem"))
{
Expand All @@ -158,26 +160,23 @@ static void ParseFiles()
});
primalItemsFile.Add(ss);
spawncodeItemsFile.Add(s);
continue;
}
if (filename.StartsWith("Character_BP"))
{
var s = "admincheat SpawnDino " + ((char)34) + "Blueprint'" + item.Replace(path, PATH_PREFIX).Replace(".uasset", "." + filename).Replace(@"\", "/") + "'" + ((char)34) + " 500 0 0 120";
var ss = "admincheat GMSummon " + ((char)34) + filename + ((char)34) + " 120";
summeryFile.Add(new Summery
{
Type = SummeryEnum.SPAWNCODE_CREATURE,
Value = s
});
spawncodeCreatureFile.Add(s);
}
if (filename.StartsWith("Character_BP"))
{
var s = "admincheat GMSummon " + ((char)34) + filename + ((char)34) + " 120";
summeryFile.Add(new Summery
{
Type = SummeryEnum.SPAWNCODE_CREATURE,
Value = s
Value = ss
});
spawncodeCreatureFile.Add(s);
continue;
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.0.0.1")]
[assembly: AssemblyFileVersion("1.0.0.1")]

0 comments on commit 22cd681

Please sign in to comment.