Fix issue with modules not registering their API.

This commit is contained in:
Sandu Liviu Catalin
2016-07-17 03:47:38 +03:00
parent 66d1110733
commit 9874bbe1dc
7 changed files with 31 additions and 30 deletions
+2 -2
View File
@@ -35,13 +35,13 @@ static bool RegisterAPI()
return false;
}
Table ircns;
Table ircns(DefaultVM::Get());
Register_Common(ircns);
Register_Session(ircns);
Register_Constants(ircns);
RootTable().Bind(_SC("SqIRC"), ircns);
RootTable(DefaultVM::Get()).Bind(_SC("SqIRC"), ircns);
// Registration was successful
return true;