Prevent new scripts from interrupting scripts in progress

This commit is contained in:
Jeff Parsons 2017-02-08 09:25:09 -08:00 committed by Jeff Parsons
commit d23ae82679
13 changed files with 1864 additions and 1423 deletions

View file

@ -607,16 +607,15 @@ function findMachineComponent(idMachine, sType)
}
/**
* processMachineScript(idMachine, sComponent, sScript)
* processMachineScript(idMachine, sScript)
*
* @param {string} idMachine
* @param {string} sComponent
* @param {string} sScript
* @return {boolean}
*/
function processMachineScript(idMachine, sComponent, sScript)
function processMachineScript(idMachine, sScript)
{
return Component.processScript(idMachine, sComponent, sScript);
return Component.processScript(idMachine, sScript);
}
/**