Skip to content

Commit

Permalink
スペルミス修正
Browse files Browse the repository at this point in the history
  • Loading branch information
TORISOUP committed Sep 9, 2016
1 parent 9245e87 commit 1c9ce3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Inferno/InfernoScripts/Player/PlayerGripVehicle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,12 @@ private void GripAction()
_isGriped = true;
var playerRHandCoords = PlayerPed.GetBoneCoord(Bone.SKEL_R_Hand);

var ofsetPosition = Function.Call<Vector3>(Hash.GET_OFFSET_FROM_ENTITY_GIVEN_WORLD_COORDS,
var offsetPosition = Function.Call<Vector3>(Hash.GET_OFFSET_FROM_ENTITY_GIVEN_WORLD_COORDS,
gripAvailableVeles,
playerRHandCoords.X,
playerRHandCoords.Y,
playerRHandCoords.Z);
Grip(PlayerPed, gripAvailableVeles, ofsetPosition);
Grip(PlayerPed, gripAvailableVeles, offsetPosition);
}

/// <summary>
Expand Down

0 comments on commit 1c9ce3f

Please sign in to comment.