Support for chained commands/actionsSuggestion

Hello there!

I want 1 command (/mummy) to do 2 things! How can I do this?

I want to do /kit mummy & O.usergroup add {player.id} group mummy

How can I do this?

I currently have this as code but 1 overrides the other one (I think):

{
  "alias": [
    {
      "original": "/kit mummy",
      "alias": "/mummy",
      "originaltype": "chat",
      "aliastype": "chat",
      "permission": "aliassystem.mummy"
    },
    {
      "original": "O.usergroup add {player.id} group mummy",
      "alias": "/mummy",
      "originaltype": "console",
      "aliastype": "chat",
      "permission": "aliassystem.mummy"
    }
  ]
}
It would be useful to be able to combine multiple commands into one. Would you consider adding this?