Fix success sound for tutorial

This commit is contained in:
Ryan Huffman 2016-09-14 11:13:08 -07:00
parent 8d2f558ac3
commit 80b53a30d7

View file

@ -367,6 +367,7 @@ stepNearGrab.prototype = {
} }
if (channel == "Entity-Exploded") { if (channel == "Entity-Exploded") {
print("TUTORIAL: Got entity-exploded message"); print("TUTORIAL: Got entity-exploded message");
playSuccessSound();
var data = parseJSON(message); var data = parseJSON(message);
//if (data.entityID == this.boxID) { //if (data.entityID == this.boxID) {
this.finished = true; this.finished = true;
@ -459,6 +460,7 @@ stepFarGrab.prototype = {
} }
if (channel == "Entity-Exploded") { if (channel == "Entity-Exploded") {
print("TUTORIAL: Got entity-exploded message"); print("TUTORIAL: Got entity-exploded message");
playSuccessSound();
var data = parseJSON(message); var data = parseJSON(message);
if (data.entityID == this.boxID) { if (data.entityID == this.boxID) {
this.finished = true; this.finished = true;
@ -818,6 +820,7 @@ function startTutorial() {
} }
//location = "/tutorial_begin"; //location = "/tutorial_begin";
location = "/tutorial"; location = "/tutorial";
MyAvatar.shouldRenderLocally = false;
startNextStep(); startNextStep();
} }