mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-20 04:34:48 +00:00
Merge pull request #1504 from Areloch/FixMissingParenth
Fixes missing parentheses that is causing the script to not compile
This commit is contained in:
commit
46bcd183f7
|
|
@ -456,7 +456,7 @@ function EditorAutoSaveMission()
|
|||
AssetBackupListArray.empty();
|
||||
|
||||
%scenePath = makeFullPath(getRootScene().getFileName());
|
||||
if(startsWith(%scenePath, "tools/levels/")
|
||||
if(startsWith(%scenePath, "tools/levels/"))
|
||||
return false;
|
||||
|
||||
//Next, we figure out what all we're planning to save
|
||||
|
|
|
|||
Loading…
Reference in a new issue