iv been screwing around with this config file for hours and i cant figure out how to make both admin and default groups in a single file... the best iv gotten is this, but the plugin starts acting up and displaying the message No help page named "page1" exists. even though it displays the correct text for the page called on...

{
  "Pages": {
    "default": {
      "*": [
        "custom helptext1",
        "custom helptext2"
      ],
      "page1": [
        "helptext1",
        "helptext2"
      ],
      "page2": [
        "helptext3",
        "helptext4"
      ]
    },
    "admin": {
      "*": [
        "admin helptext1",
        "admin helptext2"
      ],
      "admincommands": [
        "helptext1",
        "helptext2"
      ]
    }
  },
  "Settings": {
    "AllowHelpTextFromOtherPlugins": false,
    "BreakAfter": 10,
    "UseCustomHelpText": true
  },
  "VERSION": "2.0.51"
}

i found a jankey fix that kinda works for anyone who's in the same prediciment as me, just duplicate the HelpText.cs file rename it AdminHelpText.cs then go into the .cs file and on line 11 change class HelpText : CovalencePlugin to class AdminHelpText : CovalencePlugin then scroll down to line 63 and change [Command("help")] to [Command("adminhelp")]

then you can just change "default" to "admin" in the new .json file and whenever you type /adminhelp it will pull up your the other help menu just for admins

even though this jankey ass fix works i would still like to know TF im doing wrong in the file so i don't have to run a duplicate of the HelpText plugin.