mirror of
https://github.com/mapbase-source/source-sdk-2013.git
synced 2024-12-26 23:05:30 +03:00
Merge pull request #19 from ReDucTor/feature/vscript
Fixing load/restore issue with classes that existed before
This commit is contained in:
commit
05303c9e66
@ -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…
Reference in New Issue
Block a user