diff --git a/src/js/economyJS.js b/src/js/economyJS.js index 0109122553356e47b53f94dfc8928a42863b5aa2..502686b3dfce2992138d1a01d0d2d3cd022ea67d 100644 --- a/src/js/economyJS.js +++ b/src/js/economyJS.js @@ -1285,6 +1285,11 @@ globalThis.getSlaveCostArray = function(s) { retval.push({text: "Big & Small Subsidy", value: -200}); } + // Tutoring + if (tutorForSlave(s)) { + retval.push({text: "Tutoring expenses", value: 7500}); + } + return retval; };