Skip to content

Commit

Permalink
fix: bad vector math
Browse files Browse the repository at this point in the history
  • Loading branch information
roflmuffin committed Mar 26, 2024
1 parent e4d598d commit 696ecad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions managed/CounterStrikeSharp.API/Modules/Utils/Vector.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*
/*
* This file is part of CounterStrikeSharp.
* CounterStrikeSharp is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -75,7 +75,7 @@ public void Add(Vector vector)
{
this.X += vector.X;
this.Y += vector.Y;
this.Z = this.Z = vector.Z;
this.Z += vector.Z;
}


Expand Down

0 comments on commit 696ecad

Please sign in to comment.