1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-01-31 18:07:14 +01:00

Forgot to the OnAuth property for commands manager which was still using the same name as OnFail.

This commit is contained in:
Sandu Liviu Catalin 2016-07-03 19:29:50 +03:00
parent 3094e14015
commit cfe2d3b4ed

View File

@ -1027,7 +1027,7 @@ void Register(HSQUIRRELVM vm)
.Prop(_SC("Count"), &Manager::GetCount)
.Prop(_SC("IsContext"), &Manager::IsContext)
.Prop(_SC("OnFail"), &Manager::GetOnFail)
.Prop(_SC("OnFail"), &Manager::GetOnFail)
.Prop(_SC("OnAuth"), &Manager::GetOnAuth)
.Prop(_SC("Invoker"), &Manager::GetInvoker)
.Prop(_SC("Listener"), &Manager::GetListener)
.Prop(_SC("Command"), &Manager::GetCommand)