Multiple chat commands for the same function?Solved

I was looking to add multiple chat commands such as /store /shop /s to allow a better end-user experience. How would this be completed? 

Sample section that I would like to add multiple commands: 

        #region Commands
        [ChatCommand("shop")]
        private void cmdStore(BasePlayer player, string command, string[] args)
        {
            if ((configData.Options.NPCOnly && IsAuthed(player)) || !configData.Options.NPCOnly)
            {
                OpenStore(player);
            }
        }​

In either the existing Init, Loaded, or OnServerInitialized hook:

cmd.AddChatCommand("store", this, cmdStore);

 

Locked automatically