(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?
Type `ListHashSet<BasePlayer>' does not contain a definition for `Find'Fixed
Same. Looks like the update killed about 5 of our plugins
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); 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)
if (npc == null npc.transform == null npc.IsDestroyed)
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
Pho3niX90PS: Change was on line 1087, and 2102
Please do not post random versions of plugins on the forums, thanks.
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