Removed LVector, LQuaternion.

Server side optimization.
Nework optimization (streaming distance).
This commit is contained in:
Sardelka
2022-05-30 14:32:38 +08:00
parent aefea337f1
commit ad698a656d
21 changed files with 162 additions and 216 deletions

View File

@ -2,6 +2,7 @@
using System.Collections.Generic;
using RageCoop.Core;
using Lidgren.Network;
using GTA.Math;
namespace RageCoop.Server
{
@ -160,7 +161,7 @@ namespace RageCoop.Server
{
returnTypeValue = 0x03;
}
else if (returnType == typeof(LVector3))
else if (returnType == typeof(Vector3))
{
returnTypeValue = 0x04;
}