Type `ListHashSet<BasePlayer>' does not contain a definition for `Find'Fixed

(20:18:42) | Error while compiling: AdminRadar.cs(1216,65): error CS1061: Type `ListHashSet<BasePlayer>' does not contain a definition for `Find' and no extension method `Find' of type `ListHashSet<BasePlayer>' could be found. Are you missing an assembly reference?

Same.  Looks like the update killed about 5 of our plugins
5d6ebc395ad51.png tbird412
Same.  Looks like the update killed about 5 of our plugins

yeah my Clans is also not working

same thing for me with last oxide update this plugin need update again !!!
25 AdminRadar - Failed to compile: AdminRadar.cs(1419,65): error CS1061: Type `ListHashSet<BasePlayer>' does not contain a definition for `Find' and no extension method `Find' of type `ListHashSet<BasePlayer>' could be found. Are you missing an assembly reference?
same issue
Same Issue
It has error and wont work since last update...
same issue
As a temporary solution, replace the line 1416
                        var owner = BasePlayer.activePlayerList.Find(x => x.userID == container.OwnerID);​

with

                        var owner = BasePlayer.activePlayerList.ToList().Find(x => x.userID == container.OwnerID);
5d5132d656818.png Antidote
As a temporary solution, replace the line 1416
var owner = BasePlayer.activePlayerList.FindByID(container.OwnerID);
line 1416 shows this

if (npc == null npc.transform == null npc.IsDestroyed)
5e13a8d5b2bc5.jpg Wulf
var owner = BasePlayer.activePlayerList.FindByID(container.OwnerID);

Hmm

Error while compiling: AdminRadar.cs(1419,65): error CS1061: Type `ListHashSet<BasePlayer>' does not contain a definition for `FindByID' and no extension method `FindByID' of type `ListHashSet<BasePlayer>' could be found. Are you missing an assembly reference?
PS: Change was on line 1087, and 2102
Pho3niX90
PS: Change was on line 1087, and 2102

Please do not post random versions of plugins on the forums, thanks.

5d5132d656818.png Antidote

Hmm

Error while compiling: AdminRadar.cs(1419,65): error CS1061: Type `ListHashSet<BasePlayer>' does not contain a definition for `FindByID' and no extension method `FindByID' of type `ListHashSet<BasePlayer>' could be found. Are you missing an assembly reference?
var owner = BasePlayer.FindByID(container.OwnerID);
Locked automatically