diff --git a/src/endWeek/economics/personalNotes.js b/src/endWeek/economics/personalNotes.js index 01504987396ffa0656f4262ef3c84250186a3704..65cf0ba66d3fc2586f214eb622415a55920070e6 100644 --- a/src/endWeek/economics/personalNotes.js +++ b/src/endWeek/economics/personalNotes.js @@ -35,10 +35,10 @@ App.EndWeek.personalNotes = function() { r.push(`Whenever you have a free moment and a chest swollen with milk, you spend your time attached to the nearest milker. As a result, you produce ${milk} liters of sellable milk over the week.`); if (V.arcologies[0].FSPastoralist !== "unset") { if (V.arcologies[0].FSPastoralistLaw === 1) { - milkSale = milk * (28 + Math.trunc(V.arcologies[0].FSPastoralist / 30)); + milkSale = Math.round(milk * ((28 * (V.rep/1000)) + Math.trunc(V.arcologies[0].FSPastoralist / 30)); r.push(`Since breast milk is ${V.arcologies[0].name}'s only legal dairy product, and yours is in a class all of its own, society can't get enough of it and you make <span class="yellowgreen">${cashFormat(milkSale)}.</span>`); } else { - milkSale = milk * (12 + Math.trunc(V.arcologies[0].FSPastoralist / 30)); + milkSale = Math.round(milk * ((12 * (V.rep/1000)) + Math.trunc(V.arcologies[0].FSPastoralist / 30))); r.push(`Since milk is fast becoming a major part of the ${V.arcologies[0].name}'s dietary culture, and yours is in a class all of its own, you make <span class="yellowgreen">${cashFormat(milkSale)}.</span>`); } } else {