AllanGame/discord-moderator-bot

Identifying someone as owner

fitnihil opened this issue · 1 comments

Where do I apply an ID to set someone as owner?
Is it in the DB or in the code?

{
    "owners": {
      "id": []
    }
  }

In misc.js file, not db, it is a arraylist, to add an item, in this perhaps your ID, you must put it inside "" like this:

{
    "owners": {
      "id": ["YOUR-ID"]
    }
  }

for multiple:

{
    "owners": {
      "id": ["YOUR-ID", "ANOTHER-OWNER-ID"]
    }
  }