Skip to content

Commit 22cd681

Browse files
committed
performance update
1 parent 7e3f5d1 commit 22cd681

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

Program.cs

+6-7
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ static void ParseFiles()
131131
Value = s
132132
});
133133
engramFile.Add(s);
134+
continue;
134135
}
135136
if (filename.StartsWith("BP_"))
136137
{
@@ -141,6 +142,7 @@ static void ParseFiles()
141142
Value = s
142143
});
143144
blueprintFile.Add(s);
145+
continue;
144146
}
145147
if (filename.StartsWith("PrimalItem"))
146148
{
@@ -158,26 +160,23 @@ static void ParseFiles()
158160
});
159161
primalItemsFile.Add(ss);
160162
spawncodeItemsFile.Add(s);
163+
continue;
161164
}
162165
if (filename.StartsWith("Character_BP"))
163166
{
164167
var s = "admincheat SpawnDino " + ((char)34) + "Blueprint'" + item.Replace(path, PATH_PREFIX).Replace(".uasset", "." + filename).Replace(@"\", "/") + "'" + ((char)34) + " 500 0 0 120";
168+
var ss = "admincheat GMSummon " + ((char)34) + filename + ((char)34) + " 120";
165169
summeryFile.Add(new Summery
166170
{
167171
Type = SummeryEnum.SPAWNCODE_CREATURE,
168172
Value = s
169173
});
170-
spawncodeCreatureFile.Add(s);
171-
}
172-
if (filename.StartsWith("Character_BP"))
173-
{
174-
var s = "admincheat GMSummon " + ((char)34) + filename + ((char)34) + " 120";
175174
summeryFile.Add(new Summery
176175
{
177176
Type = SummeryEnum.SPAWNCODE_CREATURE,
178-
Value = s
177+
Value = ss
179178
});
180-
spawncodeCreatureFile.Add(s);
179+
continue;
181180
}
182181
}
183182
}

Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@
3333
// You can specify all the values or you can default the Build and Revision Numbers
3434
// by using the '*' as shown below:
3535
// [assembly: AssemblyVersion("1.0.*")]
36-
[assembly: AssemblyVersion("1.0.0.0")]
37-
[assembly: AssemblyFileVersion("1.0.0.0")]
36+
[assembly: AssemblyVersion("1.0.0.1")]
37+
[assembly: AssemblyFileVersion("1.0.0.1")]

0 commit comments

Comments
 (0)