July update broke plugin

is there plans for update for this months wipe, seeing how its failing to compile.

 

error while compiling HeliRide: 'BasePlayer' does not contain a definition for 'ClientRPCPlayer' and no accessible extension method 'ClientRPCPlayer' accepting a first argument of type 'BasePlayer' could be found (are you missing a using directive or an assembly reference?) | Line: 601, Pos: 28

Ive fixed it on my server by replacing:

if (input.IsDown(BUTTON.DUCK))
{
Vector3 downPos = player.transform.position + Vector3.down * (UnityEngine.Time.deltaTime * 3f);
player.ClientRPCPlayer(null, player, "ForcePositionTo", downPos);
player.SendNetworkUpdate();
}

 

with this 

 

if (input.IsDown(BUTTON.DUCK))
{
Vector3 downPos = player.transform.position + Vector3.down * (Time.deltaTime * 3f);

player.MovePosition(downPos);
player.SendNetworkUpdateImmediate();
}

Thanks!