1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 08:47:17 +01:00

Fix wrong function registered under the wrong name.

This commit is contained in:
Sandu Liviu Catalin 2016-07-27 23:35:52 +03:00
parent 58ad1d59e5
commit 6eb0e97a71

View File

@ -142,7 +142,7 @@ void Register_Misc(HSQUIRRELVM vm)
.Func(_SC("GetPlayerIdFromName"), &GetPlayerIdFromName)
.Func(_SC("IsPlayerConnected"), &IsPlayerConnected)
.Func(_SC("ForceAllSelect"), &ForceAllSelect)
.Func(_SC("CheckEntityExists"), &SetKeyCodeName)
.Func(_SC("CheckEntityExists"), &CheckEntityExists)
.Func(_SC("GetDistrictName"), &GetDistrictName)
.Func(_SC("GetDistrictNameEx"), &GetDistrictNameEx);