Merge branch 'development' of https://github.com/TorqueGameEngines/Torque3D into classPrototypingPresenter

This commit is contained in:
AzaezelX 2023-11-29 14:16:37 -06:00
commit 045c15fd26
36 changed files with 313 additions and 91 deletions

View file

@ -436,7 +436,7 @@ SimObject *spawnObject(String spawnClass, String spawnDataBlock, String spawnNam
// If we have a spawn script go ahead and execute it last
if (spawnScript.isNotEmpty())
Con::evaluate(spawnScript.c_str(), true);
Con::evaluate(spawnScript.c_str());
return spawnObject;
}