1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2026-04-19 10:37:21 +02: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
+1 -1
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)