Names being changed on Discord
When people sync, their name on Discord is changed. I have disabled this in my config, but it still happens.

This is my DiscordSync.json config file. (i have edit Bot Token to xxx).
{
  "Discord Bot Token": "xxx",
  "Update Interval (Minutes)": 5,
  "Enable Nick Syncing": false,
  "Enable Ban Syncing": false,
  "Enable Role Syncing": true,
  "Role Setup": [
    {
      "Oxide Group": "authenticated",
      "Discord Role": "Verified"
    },
    {
      "Oxide Group": "viking",
      "Discord Role": "VIKING"
    },
    {
      "Oxide Group": "vip+",
      "Discord Role": "VIP+"
    },
    {
      "Oxide Group": "vip",
      "Discord Role": "VIP"
    }
  ]
}​

As you can see, Nick syncing is to false, but the bot still changing people's names.

This is a screenshot of the log on the Discordbot, 10-15 min after a player with name "BamseFar" has completed the sync-process.
(I know it's in Danish, but I hope you understand the point. But at least that means the bot has changed his name)


This is a big problem as I don't want it to sync people's names.

I hope someone can help me - thanks in advance.

No help?
update the bot roles, remove the ability to rename other players

on line 271 in the DiscordSync.cs file you can just remove the string 

_guild.ModifyUsersNick(Client, discordId, player.Name);

 

while maintaining the correct syntax (you can simply just remove line 271

This will fix the issue