From 712e1a62dd0cef9a2c7c92416102cc6603f68ca1 Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Wed, 1 Jul 2020 22:41:24 -0400 Subject: [PATCH] policy school fix --- js/003-data/policiesData.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/003-data/policiesData.js b/js/003-data/policiesData.js index 2f188e07e60..75c472df453 100644 --- a/js/003-data/policiesData.js +++ b/js/003-data/policiesData.js @@ -539,7 +539,7 @@ App.Data.Policies.Selection = { title: "The Slave School subsidy", text: "you will subsidize this school's branch campus in your arcology.", activatedText: "you are subsidizing this school's branch campus in your arcology.", - requirements: function() { return (V.TSS.schoolProsperity < 10 && V.TSS.schoolProsperity < 10); }, + requirements: function() { return (V.TSS.schoolProsperity < 10 && V.TSS.schoolPresent === 1); }, get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; }, }, { @@ -555,7 +555,7 @@ App.Data.Policies.Selection = { title: "The Growth Research Institute subsidy", text: "you will subsidize this school's branch campus in your arcology.", activatedText: "you are subsidizing this school's branch campus in your arcology.", - requirements: function() { return (V.GRI.schoolProsperity < 10 && V.GRI.schoolProsperity < 10); }, + requirements: function() { return (V.GRI.schoolProsperity < 10 && V.GRI.schoolPresent === 1); }, get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; }, }, { -- GitLab