Add success sound

This commit is contained in:
Ryan Huffman 2016-09-02 09:43:24 -07:00
parent a89064f96f
commit eb195e2fb8

View file

@ -644,6 +644,7 @@ stepTurnAround.prototype = {
Script.clearInterval(this.interval);
this.interval = null;
print("DONE");
playSuccessSound();
onFinish();
}
}
@ -697,6 +698,7 @@ stepTeleport.prototype = {
print("On pad!!");
Script.clearInterval(this.checkCollidesTimer);
this.checkCollidesTimer = null;
playSuccessSound();
onFinish();
}
}