Fixed to work with Version 2.012 of Cookie Clicker

This commit is contained in:
Aktanusa
2018-08-08 11:37:35 -04:00
parent 3af0dd81e5
commit 1a1877e15c
2 changed files with 4 additions and 2 deletions

View File

@@ -3002,7 +3002,7 @@ CM.Sim.CalculateGains = function() {
if (CM.Sim.Has('An itchy sweater')) mult *= 1.01;
if (CM.Sim.Has('Santa\'s dominion')) mult *= 1.2;
var buildMult=1;
var buildMult = 1;
if (Game.hasGod) {
var godLvl = Game.hasGod('asceticism');
if (godLvl == 1) mult *= 1.15;
@@ -3224,6 +3224,7 @@ CM.Sim.BuyBuildings = function(amount, target) {
if (me.amount >= 300) CM.Sim.Win('Extreme polydactyly');
if (me.amount >= 400) CM.Sim.Win('Dr. T');
if (me.amount >= 500) CM.Sim.Win('Thumbs, phalanges, metacarpals');
if (me.amount >= 600) CM.Sim.Win('With her finger and her thumb');
}
else {
for (var j in Game.Objects[me.name].tieredAchievs) {

View File

@@ -187,7 +187,7 @@ CM.Sim.CalculateGains = function() {
if (CM.Sim.Has('An itchy sweater')) mult *= 1.01;
if (CM.Sim.Has('Santa\'s dominion')) mult *= 1.2;
var buildMult=1;
var buildMult = 1;
if (Game.hasGod) {
var godLvl = Game.hasGod('asceticism');
if (godLvl == 1) mult *= 1.15;
@@ -409,6 +409,7 @@ CM.Sim.BuyBuildings = function(amount, target) {
if (me.amount >= 300) CM.Sim.Win('Extreme polydactyly');
if (me.amount >= 400) CM.Sim.Win('Dr. T');
if (me.amount >= 500) CM.Sim.Win('Thumbs, phalanges, metacarpals');
if (me.amount >= 600) CM.Sim.Win('With her finger and her thumb');
}
else {
for (var j in Game.Objects[me.name].tieredAchievs) {