1
0
Fork 0

cPluginManager:BindCommand() and :BindConsoleComman() now report full Lua stacktrace on failure.

This commit is contained in:
madmaxoft 2013-11-13 15:54:56 +01:00
parent ceee25bd11
commit 991f7d2315
1 changed files with 6 additions and 2 deletions

View File

@ -1347,7 +1347,9 @@ static int tolua_cPluginManager_BindCommand(lua_State * L)
if (!self->BindCommand(Command, Plugin, Permission, HelpString))
{
// Refused. Possibly already bound. Error message has been given, bail out silently.
// Refused. Possibly already bound. Error message has been given, display the callstack:
cLuaState LS(L);
LS.LogStackTrace();
return 0;
}
@ -1409,7 +1411,9 @@ static int tolua_cPluginManager_BindConsoleCommand(lua_State * L)
if (!self->BindConsoleCommand(Command, Plugin, HelpString))
{
// Refused. Possibly already bound. Error message has been given, bail out silently.
// Refused. Possibly already bound. Error message has been given, display the callstack:
cLuaState LS(L);
LS.LogStackTrace();
return 0;
}