From 4e18305813b8f047ecf126680575f2414e051e6d Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Fri, 3 Feb 2017 10:38:18 -0800 Subject: [PATCH] Remove cache busters from shortbow --- unpublishedScripts/marketplace/shortbow/bow/spawnBow.js | 2 +- .../marketplace/shortbow/shortbowServerEntity.js | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/unpublishedScripts/marketplace/shortbow/bow/spawnBow.js b/unpublishedScripts/marketplace/shortbow/bow/spawnBow.js index 58ad64d3f6..59dc35d05e 100644 --- a/unpublishedScripts/marketplace/shortbow/bow/spawnBow.js +++ b/unpublishedScripts/marketplace/shortbow/bow/spawnBow.js @@ -49,7 +49,7 @@ var id = Entities.addEntity({ "y": -0.10469216108322144, "z": -0.14418250322341919 }, - "script": Script.resolvePath("bow.js") + "?" + Date.now(), + "script": Script.resolvePath("bow.js"), "shapeType": "compound", "type": "Model", //"userData": JSON.stringify(userData), diff --git a/unpublishedScripts/marketplace/shortbow/shortbowServerEntity.js b/unpublishedScripts/marketplace/shortbow/shortbowServerEntity.js index 0b38a6e627..de432ac331 100644 --- a/unpublishedScripts/marketplace/shortbow/shortbowServerEntity.js +++ b/unpublishedScripts/marketplace/shortbow/shortbowServerEntity.js @@ -7,9 +7,9 @@ // (function() { - Script.include('utils.js?' + Date.now()); - Script.include('shortbow.js?' + Date.now()); - Script.include('shortbowGameManager.js?' + Date.now()); + Script.include('utils.js'); + Script.include('shortbow.js'); + Script.include('shortbowGameManager.js'); TEMPLATES = SHORTBOW_ENTITIES.Entities;