Skip to content

Commit

Permalink
Bug fix for herbs
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukenickerson committed Mar 10, 2017
1 parent 71a489c commit 49e9f02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/civclicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -2285,7 +2285,7 @@ function doWoodcutters() {
var herbsChance = civData.wood.specialChance * (civData.wood.increment + ((civData.gardening.owned) * civData.woodcutter.owned / 5.0)) * getWonderBonus(civData.herbs);
var herbsEarned = rndRound(herbsChance);
civData.herbs.net += herbsEarned;
civData.herbs.owned += rndRound(herbsEarned);
civData.herbs.owned += herbsEarned;
}
}

Expand Down

0 comments on commit 49e9f02

Please sign in to comment.