Skip to content

Commit

Permalink
fix: NetworkedVector throwing error
Browse files Browse the repository at this point in the history
  • Loading branch information
roflmuffin authored Jan 9, 2025
1 parent bd1105d commit f05cc5e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public T this[int index]
{
get
{
if (IsValidType)
if (!IsValidType)
{
throw new NotSupportedException("Networked vectors currently only support CHandle<T>, Vector, or QAngle");
}
Expand Down

0 comments on commit f05cc5e

Please sign in to comment.