Core/Refactor: Part 4

This commit is contained in:
hondacrx
2018-05-27 15:40:06 -04:00
parent d94ad385b1
commit 2c3479c6e2
59 changed files with 159 additions and 223 deletions
@@ -232,10 +232,9 @@ namespace Game.AI
{
uint entry = result.Read<uint>(0);
uint id = result.Read<uint>(1);
float x, y, z;
x = result.Read<float>(2);
y = result.Read<float>(3);
z = result.Read<float>(4);
float x = result.Read<float>(2);
float y = result.Read<float>(3);
float z = result.Read<float>(4);
if (last_entry != entry)
{