repo: janusweb action: commit revision: path_from: revision_from: cdb90ec490d5a53c0ac8d6ecbb633867e570c51c: path_to: revision_to:
commit cdb90ec490d5a53c0ac8d6ecbb633867e570c51c Author: James BaicoianuDate: Wed Mar 28 17:24:43 2018 -0700 Skip starting object if its parent isn't also started diff --git a/scripts/janusbase.js b/scripts/janusbase.js
--- a/scripts/janusbase.js
+++ b/scripts/janusbase.js
@@ -508,8 +508,8 @@ elation.require(['engine.things.generic', 'utils.template'], function() {
}
}
- this.createObject = function(type, args) {
- return room.createObject(type, args, this);
+ this.createObject = function(type, args, skipstart) {
+ return room.createObject(type, args, this, !this.started);
}
this.appendChild = function(obj) {
var proxyobj = obj
-----END OF PAGE-----