Skip to content

Commit f120f04

Browse files
committed
Removed HC stats as it is useless now (pending cleaning)
1 parent 13a49e3 commit f120f04

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

CookieMonster.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1352,7 +1352,8 @@ CM.Disp.AddMenuStats = function(title) {
13521352
stats.appendChild(listing('\"Chain\" Reward (CUR) (Wrath)', document.createTextNode(Beautify(chainCurWrath))));
13531353
}
13541354

1355-
stats.appendChild(header('Heavenly Chips', 'HC'));
1355+
// Useless for now; cleanup later
1356+
/*stats.appendChild(header('Heavenly Chips', 'HC'));
13561357
if (CM.Config.StatsPref.HC) {
13571358
var possibleHC = Game.HowMuchPrestige(Game.cookiesEarned + Game.cookiesReset);
13581359
var neededCook = Game.HowManyCookiesReset(possibleHC + 1) - (Game.cookiesEarned + Game.cookiesReset);
@@ -1394,7 +1395,7 @@ CM.Disp.AddMenuStats = function(title) {
13941395
resetFrag.appendChild(resetSmall);
13951396
}
13961397
//stats.appendChild(listing(resetTitleFrag, resetFrag));
1397-
}
1398+
}*/
13981399

13991400
var choEgg = (Game.HasUnlocked('Chocolate egg') && !Game.Has('Chocolate egg')); // Needs to be done for the checking below
14001401

src/Disp.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1014,7 +1014,8 @@ CM.Disp.AddMenuStats = function(title) {
10141014
stats.appendChild(listing('\"Chain\" Reward (CUR) (Wrath)', document.createTextNode(Beautify(chainCurWrath))));
10151015
}
10161016

1017-
stats.appendChild(header('Heavenly Chips', 'HC'));
1017+
// Useless for now; cleanup later
1018+
/*stats.appendChild(header('Heavenly Chips', 'HC'));
10181019
if (CM.Config.StatsPref.HC) {
10191020
var possibleHC = Game.HowMuchPrestige(Game.cookiesEarned + Game.cookiesReset);
10201021
var neededCook = Game.HowManyCookiesReset(possibleHC + 1) - (Game.cookiesEarned + Game.cookiesReset);
@@ -1056,7 +1057,7 @@ CM.Disp.AddMenuStats = function(title) {
10561057
resetFrag.appendChild(resetSmall);
10571058
}
10581059
//stats.appendChild(listing(resetTitleFrag, resetFrag));
1059-
}
1060+
}*/
10601061

10611062
var choEgg = (Game.HasUnlocked('Chocolate egg') && !Game.Has('Chocolate egg')); // Needs to be done for the checking below
10621063

0 commit comments

Comments
 (0)