Skip to content
Snippets Groups Projects
Commit e18303a1 authored by lowercasedonkey's avatar lowercasedonkey
Browse files

more

parent a7585673
No related branches found
No related tags found
No related merge requests found
......@@ -1303,7 +1303,7 @@ App.Data.resetOnNGPlus = {
revealFoodEffects: 0,
rations: 0,
building: App.Arcology.defaultBuilding(),
building: {},
menials: 0,
fuckdolls: 0,
......@@ -1409,10 +1409,10 @@ App.Data.resetOnNGPlus = {
customSlaveOrdered: 0,
/* I am not a slave object! Do not treat me like one! */
customSlave: new App.Entity.CustomSlaveOrder(),
customSlave: {},
huskSlaveOrdered: 0,
huskSlave: new App.Entity.CustomSlaveOrder(),
huskSlave: {},
/* non-vanilla shit*/
......@@ -1485,6 +1485,8 @@ App.Data.resetOnNGPlus = {
},
DefaultBirthDestination: "individually decided fates",
abbreviateHormoneBalance: 2,
legendaryFacility: 0,
fcnn: [],
};
App.Data.ignoreGameStateVariables = [
......
......@@ -16,7 +16,13 @@ You should have received a copy of the GNU General Public License along with thi
<<run App.Update.setNonexistantProperties(V, App.Data.defaultGameStateVariables)>>
/* These variables must be created AND set to default values NG+ or not */
<<run V.assign(App.Data.resetOnNGPlus)>>
/*<<run V.assign(App.Data.resetOnNGPlus)>>*/
<<set _NG = App.Data.resetOnNGPlus>>
<script>
for (let variable in App.Data.resetOnNGPlus) {
V[variable] = App.Data.resetOnNGPlus[variable];
}
</script>
<<set $ver = App.Version.base, $pmodVer = App.Version.pmod, $releaseID = App.Version.release>>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment