Skip to content

Commit 0cfba75

Browse files
Add files via upload
1 parent 12984b3 commit 0cfba75

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

main.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ TreeClick = function (e) {
6464
TotalTrees += CpS;
6565
TreeClicks++;
6666

67-
if (AudioEnabled) new Audio("/snd/click1.wav").play();
67+
if (AudioEnabled) new Audio("snd/click1.wav").play();
6868
new Pop("treeContainer", "+" + CpS);
6969
}
7070

@@ -102,7 +102,7 @@ Buyable = function (name, desc, pic, price, tps, func) {
102102
this.price = Math.ceil(this.price * 1.1);
103103
this.func(1);
104104

105-
if (AudioEnabled) new Audio("/snd/buy1.wav").play();
105+
if (AudioEnabled) new Audio("snd/buy1.wav").play();
106106

107107
StoreToRebuild = 1;
108108
}
@@ -225,7 +225,7 @@ Upgrade = function(name, desc, pic, price, func) {
225225
Trees -= price;
226226

227227
this.func(1);
228-
if (AudioEnabled) new Audio("/snd/buy1.wav").play();
228+
if (AudioEnabled) new Audio("snd/buy1.wav").play();
229229

230230
UpgradesToRebuild = 1;
231231
}

0 commit comments

Comments
 (0)