Corrected Thierry's bug
This commit is contained in:
parent
fce7adb495
commit
c2dd1517e5
|
@ -35,12 +35,14 @@ Coin.prototype.update = function() {
|
|||
}
|
||||
|
||||
Coin.prototype.get = function() {
|
||||
this.got = true;
|
||||
this.mesh.visible = false;
|
||||
Coin.total ++;
|
||||
var sound = new Audio('/static/data/music/redcoins/' + Coin.total + '.mp3');
|
||||
sound.play();
|
||||
console.log(sound)
|
||||
if (!this.got) {
|
||||
this.got = true;
|
||||
this.mesh.visible = false;
|
||||
Coin.total ++;
|
||||
var sound = new Audio('/static/data/music/redcoins/' + Coin.total + '.mp3');
|
||||
sound.play();
|
||||
console.log(sound)
|
||||
}
|
||||
}
|
||||
|
||||
Coin.total = 0;
|
||||
|
|
Loading…
Reference in New Issue