RustEditAPIExample.cs 46:49 'Pool' does not contain a definition for 'GetList'

Hello,

There is an error in RustEditAPIExample.cs. Since this plugin is not on uMod, I’m writing here instead, and I apologize for that.

For the error below, I checked GitHub, but I still haven’t seen any update yet:
https://github.com/k1lly0u/Oxide.Ext.RustEdit/blob/master/RustEditAPIExample.cs

When you have time, could you please take a look at it?

Thank you.

RustEditAPIExample.cs 46:49 'Pool' does not contain a definition for 'GetList'

Hello!
I fix it in some plugins.
Change:

Pool.GetList<ulong>();
to
Pool.Get<List<ulong>>();

Pool.FreeList
to
Pool.FreeUnmanaged

ofLex

Hello!
I fix it in some plugins.
Change:

Pool.GetList<ulong>();
to
Pool.Get<List<ulong>>();

Pool.FreeList
to
Pool.FreeUnmanaged

tysm!