mirror of
https://github.com/mapbase-source/source-sdk-2013.git
synced 2025-01-13 23:37:58 +03:00
Fixing issue with restored vscript classes that are not registered being unable to be instantiated
This commit is contained in:
parent
859447ee69
commit
07eb28ffe8
@ -1675,8 +1675,16 @@ bool SquirrelVM::RegisterClass(ScriptClassDesc_t* pClassDesc)
|
||||
// Check if class name is already taken
|
||||
if (sq_get(vm_, -2) == SQ_OK)
|
||||
{
|
||||
sq_pop(vm_, 2);
|
||||
return false;
|
||||
HSQOBJECT obj;
|
||||
sq_resetobject(&obj);
|
||||
sq_getstackobj(vm_, -1, &obj);
|
||||
if (!sq_isnull(obj))
|
||||
{
|
||||
sq_pop(vm_, 2);
|
||||
return false;
|
||||
}
|
||||
|
||||
sq_pop(vm_, 1);
|
||||
}
|
||||
|
||||
// Register base in case it doesn't exist
|
||||
|
Loading…
x
Reference in New Issue
Block a user