Skip to content

Commit d6d954a

Browse files
Add files via upload
1 parent 511b45b commit d6d954a

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

index.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@ <h1>Statistics</h1>
4848
<div class="modal" id="info">
4949
<h1>Info</h1>
5050
<div class="content">
51+
<div>
52+
<h1>2.0.4 Released! (29/6/24)</h1>
53+
<p>- Bug Fixes</p>
54+
<p>- Nerfed upgrades</p>
55+
</div>
5156
<div>
5257
<h1>2.0.3 Released! (29/6/24)</h1>
5358
<p>- Added 3 new buildings!</p>

main.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
function l(what) {return document.getElementById(what);}
22

3-
Version = "2.0.3";
3+
Version = "2.0.4";
44
const versions = document.querySelectorAll("#version");
55

66
versions.forEach((e) => {
@@ -70,7 +70,7 @@ TreeClick = function (e) {
7070
TreeClicks++;
7171

7272
if (AudioEnabled) new Audio("snd/click1.wav").play();
73-
new Pop("treeContainer", "+" + CpS);
73+
new Pop("treeContainer", "+" + Beautify(CpS));
7474
}
7575

7676
Earn = function(amount) {
@@ -271,11 +271,11 @@ Upgrade = function(name, desc, pic, price, mul, func) {
271271
}
272272
}
273273

274-
new Upgrade("Double CpS", "Doubles the CpS", "cursor", 100, 2, function() {
274+
new Upgrade("Double CpS", "Doubles the CpS", "cursor", 100, 10, function() {
275275
CpS *= 2;
276276
});
277277

278-
new Upgrade("Trees Increase", "Adds 5% to TpS", "tree", 10000000, 5, function() {
278+
new Upgrade("Trees Increase", "Adds 5% to TpS", "tree", 10000000, 16, function() {
279279
TpS += (TpS * 0.05);
280280
});
281281

0 commit comments

Comments
 (0)