Skip to content

Commit

Permalink
Add no bank to the bank section
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholas committed Feb 12, 2016
1 parent bd28e3b commit ccfe563
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions 1.905/fc_button.js
Original file line number Diff line number Diff line change
Expand Up @@ -472,9 +472,12 @@ function FCMenu() {
buildTable.append($('<tr><td colspan="5">&nbsp;</td></tr>'));
buildTable.append($('<tr><td colspan="5">&nbsp;</td></tr>').css('border-top', '2px dashed #999'));

banks = [{name: 'Lucky Bank', cost: luckyBank(), efficiency: cookieEfficiency(Game.cookies, luckyBank())},
banks = [
{name: 'No Bank', cost: 0, efficiency: cookieEfficiency(Game.cookies, 0)},
{name: 'Lucky Bank', cost: luckyBank(), efficiency: cookieEfficiency(Game.cookies, luckyBank())},
{name: 'Lucky Frenzy Bank', cost: luckyFrenzyBank(), efficiency: cookieEfficiency(Game.cookies, luckyFrenzyBank())},
{name: 'Chain Bank', cost: chainBank(), efficiency: cookieEfficiency(Game.cookies, chainBank())}];
{name: 'Chain Bank', cost: chainBank(), efficiency: cookieEfficiency(Game.cookies, chainBank())}
];

banks.forEach(function(bank) {
var deltaCps = effectiveCps(bank.cost) - effectiveCps();
Expand Down

0 comments on commit ccfe563

Please sign in to comment.