Some plugins are giving error after updateNot An Issue
Cannot implicitly convert type `ListHashSet<BasePlayer>' to `System.Collections.Generic.List<BasePlayer>'
Cannot convert type `ListHashSet<BasePlayer>' to `System.Collections.Generic.List<BasePlayer>' via a built-in conversion
Please report it to the plugin authors to update for Rust changes.
They're not maintened, how do I update that?
Rust changed List<BasePlayer> to ListHashSet<BasePlayer>, so it would need to be updated to reflect that change in those plugins.

This how should be?

public List<BasePlayer> Players { get; }

public ListHashSet<BasePlayer> Players { get; }
 Cannot implicitly convert type `System.Collections.Generic.List<BasePlayer>' to `ListHashSet<BasePlayer>'
Locked automatically