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Β
Not working after May updates and the CH 47 issues not being able to remove
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. π