Skip to content

Commit

Permalink
Fix svc_newmovevars big error!
Browse files Browse the repository at this point in the history
Fix svc_newmovevars big error!
  • Loading branch information
UnrealKaraulov committed Oct 13, 2023
1 parent 83643ef commit 6c906da
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions SourceCode/UnrealDemoScanner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ namespace DemoScanner.DG
public static class DemoScanner
{
public const string PROGRAMNAME = "Unreal Demo Scanner";
public const string PROGRAMVERSION = "1.68.13";
public const string PROGRAMVERSION = "1.68.14";

public enum AngleDirection
{
Expand Down Expand Up @@ -4452,6 +4452,7 @@ следующий кадр изменение и 5 кадров нет движ

if (abs(IsAttackLastTime - LastPrevPrimaryAttackTime) < EPSILON)
AutoPistolStrikes++;

if (AutoPistolStrikes == 3)
{
DemoScanner_AddWarn(
Expand Down Expand Up @@ -11407,7 +11408,7 @@ private void MessageNewMoveVars()

// different size in network protocols < 45 like gamedata frame header???

Seek(98);
Seek(97);
BitBuffer.ReadString();
}

Expand Down

0 comments on commit 6c906da

Please sign in to comment.