Hi All,
You need to edit the C# file (not the JSON config file)
The issue is with player.userID.ToString() now becoming player.userID.Get().ToString().
Fix as follows:
Change all instaces of player.userID.ToString() to player.userID.Get().ToString(). Details of where to find below, there's only two instances. Use a control f search to find them or see line numbers below
Line 114:
player.userID.ToString() -> player.userID.Get().ToString()
Line 292:
player.userID.ToString -> player.userID.Get().ToString