September Rust UpdateSolved

Needs updating for September's patch.

ZoneManager was compiled successfully in 1794ms
Error while compiling DynamicPVP: 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: 1204, Pos: 22​

Quick fix that work for me, but i did not test it completely. The pvp zone's i have looks like they are working.

Change : Pool.Free(ref stringBuilder);  to -> //Pool.Free(ref stringBuilder);
on lines:
1204
1335
1929
2033


geforceFXguy

Quick fix that work for me, but i did not test it completely. The pvp zone's i have looks like they are working.

Change : Pool.Free(ref stringBuilder);  to -> //Pool.Free(ref stringBuilder);
on lines:
1204
1335
1929
2033

I've managed to solve it by replacing `Pool.Free` by `Pool.FreeUnmanaged` on those lines

 
geforceFXguy

Quick fix that work for me, but i did not test it completely. The pvp zone's i have looks like they are working.

Change : Pool.Free(ref stringBuilder);  to -> //Pool.Free(ref stringBuilder);
on lines:
1204
1335
1929
2033

This or KajWithAJ's fixes both worked, thank you both!

Pool.FreeUnmanaged <-- is the beter one to use! 

Locked automatically