Not working after May updates and the CH 47 issues not being able to remove

Failed to compile: 'BasePlayer' does not contain a definition for 'SendFullSnapshot' and no accessible extension method 'SendFullSnapshot' accepting a first argument of type 'BasePlayer' could be found (are you missing a using directive or an assembly reference?) | Line: 1917, Pos: 32

also CH47 issue alsoΒ 

same HeliControl - Failed to compile: 'BasePlayer' does not contain a definition for 'SendFullSnapshot' and no accessible extension method 'SendFullSnapshot' accepting a first argument of type 'BasePlayer' could be found (are you missing a using directive or an assembly reference?) | Line: 1917, Pos: 32

I have had the same issue since the last wipe.Β  Is there going to be a patch or is this plug in dead?

Replace this: (should be near line 1914 in 1.4.7)

if (distFrom >= 50)
    {
        player.ClearEntityQueue();
        player.SendFullSnapshot();
    }

​

With this:

if (distFrom >= 50)
    {
        try { player.ClearEntityQueue(); } catch { }
        player.SendNetworkUpdate();
    }
​

That works for me. Thank you very much. 😘