Skip to content

Commit

Permalink
Bug fix for gravity not being set properly
Browse files Browse the repository at this point in the history
  • Loading branch information
radj307 committed Sep 1, 2021
1 parent 5a817d2 commit cf6d89a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Another_Archery_Patcher/ConfigHelpers/Stats.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public float GetSpeed(float current, out bool modified)

public float GetGravity(float current, out bool modified)
{
return ResolveValue(Speed, current, out modified);
return ResolveValue(Gravity, current, out modified);
}

public float GetImpactForce(float current, out bool modified)
Expand Down

0 comments on commit cf6d89a

Please sign in to comment.