No overload for method 'ToString' takes 1 arguments | Line: 120, Pos: 77
Broken since todays Oxide update
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.
chuckyauFind 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()`.