Broken since todays Oxide update

No overload for method 'ToString' takes 1 arguments | Line: 120, Pos: 77

Find this code

player.userID.ToString(CultureInfo.InvariantCulture)

 

Replace with

player.userID.ToString()

i try this but its not working for me
i think i do something wrong

You're just removing
CultureInfo.InvariantCulture

Occurs twice in the file.

chuckyau

Find this code

player.userID.ToString(CultureInfo.InvariantCulture)

 

Replace with

player.userID.ToString()

Thank you!


thnx for the help

Yes..

For me it worked to change all instances of `player.userID` with `player.userID.Get()`.