public void BuildDatabase()
        {
            Debug.Log(IntelliTwitchStringParser.BuildDebugMessage("Manager", "Creating new database..."));
            var dataServ = new IntelliTwitchDataService("HouseOfDungeons.db");

            dataServ.CreateDB();
        }
        private IIntelliTwitchCommand[] commandList;   //Created with reflection. Finds all commands created and in the project.

        #region Constructor

        public IntelliTwitchInterpreter(string serviceName, IntelliTwitchIRC chatClient)
        {
            dataService = new IntelliTwitchDataService(serviceName + ".db");
            client      = chatClient;
            Init();
        }