Broken after new update

HeliControl - Failed to compile: The type 'System.Text.StringBuilder' cannot be used as type parameter 'T' in the generic type or method 'Pool.Free<T>(ref T)'. There is no implicit reference conversion from 'System.Text.StringBuilder' to 'Facepunch.Pool.IPooled'. | Line: 905, Pos: 38

same here

Same.

Replace these 5 instances in the file

Facepunch.Pool.Free(ref sb);
with

Facepunch.Pool.FreeUnmanaged(ref sb);

Hope this helps
wraithnz

Replace these 5 instances in the file

Facepunch.Pool.Free(ref sb);
with

Facepunch.Pool.FreeUnmanaged(ref sb);

Hope this helps

Thank you very very much

Same here!

wraithnz

Replace these 5 instances in the file

Facepunch.Pool.Free(ref sb);
with

Facepunch.Pool.FreeUnmanaged(ref sb);

Hope this helps

Thanks, works here!

wraithnz

Replace these 5 instances in the file

Facepunch.Pool.Free(ref sb);
with

Facepunch.Pool.FreeUnmanaged(ref sb);

Hope this helps

thank you for this! 

works perfectly.

That's great thank you. You da man! 🙂

It's not working for me. I get err: Argument 1: cannot convert from 'UnityEngine.Vector3' to 'BasePlayer' [CS1503]
(HeliControl 37 line 1931)

Merged post

Any chance of repairing?

Same here

madstayen

It's not working for me. I get err: Argument 1: cannot convert from 'UnityEngine.Vector3' to 'BasePlayer' [CS1503]
(HeliControl 37 line 1931)

Merged post

Any chance of repairing?

This fix will only work until next month's patch going by this months dev blog, as Pool.GetList and Pool.FreeList are being removed in the October patch, both of which are used by this mod.