Fixed bug where Caut/Warn Tooltip calculation with bonus CPS didn't use the new Lucky reward way
This commit is contained in:
@@ -1797,7 +1797,7 @@ CM.Disp.UpdateTooltip = function() {
|
||||
if (Game.frenzy > 0) {
|
||||
bonusNoFren /= Game.frenzyPower;
|
||||
}
|
||||
warn += ((bonusNoFren * 60 * 20) / 0.1);
|
||||
warn += ((bonusNoFren * 60 * 15) / 0.15);
|
||||
}
|
||||
var caut = warn * 7;
|
||||
var amount = Game.cookies - price;
|
||||
|
||||
@@ -1459,7 +1459,7 @@ CM.Disp.UpdateTooltip = function() {
|
||||
if (Game.frenzy > 0) {
|
||||
bonusNoFren /= Game.frenzyPower;
|
||||
}
|
||||
warn += ((bonusNoFren * 60 * 20) / 0.1);
|
||||
warn += ((bonusNoFren * 60 * 15) / 0.15);
|
||||
}
|
||||
var caut = warn * 7;
|
||||
var amount = Game.cookies - price;
|
||||
|
||||
Reference in New Issue
Block a user