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

| Error while compiling: DangerousTreasures.cs(1304,62): 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?

nvm lol Discord never told me the update was released.
I'm getting the same error as Rocky... IDK what update Trillz is referring to, but i'm uptodate on Rust server, & Oxide, and have the most recent version of the plugin...
Joining you
I also have such an ERROR

Error while compiling: DangerousTreasures.cs(1304,62): 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 here its broken for me also on all 3 of my servers
As a temporary solution, replace the line 1301

looter = BasePlayer.activePlayerList.Find (x => x.UserIDString == looters [box.net.ID]);

to this


looter = BasePlayer.activePlayerList.ToList (). Find (x => x.UserIDString == looters [box.net.ID]);

ZenX
As a temporary solution, replace the line 1301

looter = BasePlayer.activePlayerList.Find (x => x.UserIDString == looters [box.net.ID]);

to this

looter = BasePlayer.activePlayerList.ToList (). Find (x => x.UserIDString == looters [box.net.ID]);

looter = BasePlayer.FindByID(looters[box.net.ID]);
5e13a8d5b2bc5.jpg Wulf
looter = BasePlayer.FindByID(looters[box.net.ID]);

results in

Error while compiling: DangerousTreasures.cs(1305,43): error CS1503: Argument `#1' cannot convert `string' expression to type `ulong'

Toliman

results in

Error while compiling: DangerousTreasures.cs(1305,43): error CS1503: Argument `#1' cannot convert `string' expression to type `ulong'

looter = BasePlayer.FindByID(ulong.Parse(looters[box.net.ID]));
May be a better way, but should work.
Hi, could we please get this fixed everyone loves this plugin on my server,

) | Error while compiling: DangerousTreasures.cs(1127,62): 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?

It looks like Wulf has updated this for me already. Please download the newest update. 
My bad all good now, I thought I already had the update
Locked automatically