diff --git a/examples/libraries/virtualBaton.js b/examples/libraries/virtualBaton.js index 4e568b6763..63f96a5c1e 100644 --- a/examples/libraries/virtualBaton.js +++ b/examples/libraries/virtualBaton.js @@ -371,7 +371,7 @@ function virtualBatonf(options) { }; // Gather nAcceptors by making two proposals with some gathering time, even without a claim. - propose(); + propose(); return exports; } if (typeof module !== 'undefined') { // Allow testing in nodejs. diff --git a/examples/tests/batonSoundEntityTest/batonSoundTestEntityScript.js b/examples/tests/batonSoundEntityTest/batonSoundTestEntityScript.js index 938fb8514d..27ce394dc2 100644 --- a/examples/tests/batonSoundEntityTest/batonSoundTestEntityScript.js +++ b/examples/tests/batonSoundEntityTest/batonSoundTestEntityScript.js @@ -1,6 +1,6 @@ (function() { - Script.include("../../libraries/virtualBaton.js?v2" + Math.random()); + Script.include("../../libraries/virtualBaton.js"); var baton; var iOwn = false; diff --git a/examples/tests/batonSoundEntityTest/batonSoundTestEntitySpawner.js b/examples/tests/batonSoundEntityTest/batonSoundTestEntitySpawner.js index 633870d985..fdcef8d32c 100644 --- a/examples/tests/batonSoundEntityTest/batonSoundTestEntitySpawner.js +++ b/examples/tests/batonSoundEntityTest/batonSoundTestEntitySpawner.js @@ -5,7 +5,7 @@ var center = Vec3.sum(MyAvatar.position, Vec3.multiply(3, Quat.getFront(orientation))); // Math.random ensures no caching of script - var SCRIPT_URL = Script.resolvePath("batonSoundTestEntityScript.js?v1" + Math.random()) + var SCRIPT_URL = Script.resolvePath("batonSoundTestEntityScript.js") var soundEntity = Entities.addEntity({ type: "Box",