This commit is contained in:
James B. Pollack 2016-03-29 15:14:17 -07:00
parent 1f3d1ac1b9
commit 2f460f165b
2 changed files with 2 additions and 2 deletions

View file

@ -24,7 +24,7 @@
var fishTankPath = Script.resolvePath('fishTank/wrapper.js?' + Math.random());
var tiltMazePath = Script.resolvePath("tiltMaze/wrapper.js?" + Math.random())
var tiltMazePath = Script.resolvePath("atp:/tiltMaze/wrapper.js")
var whiteboardPath = Script.resolvePath("whiteboard/wrapper.js?" + Math.random());

View file

@ -63,7 +63,7 @@
ballLocked: false,
preload: function(entityID) {
this.entityID = entityID;
VICTORY_SOUND = SoundCache.getSound("http://hifi-content.s3.amazonaws.com/DomainContent/Home/tiltMaze/levelUp.wav");
VICTORY_SOUND = SoundCache.getSound("atp:/tiltMaze/levelUp.wav");
Script.update.connect(this.update);
},