diff --git a/devTools/types/FC/human.d.ts b/devTools/types/FC/human.d.ts index 615a3dc3d1ad211e0c8c661571480e7978938b06..4b2295a1ae88c98c0dc04f43f5ea39fa36a0bd0e 100644 --- a/devTools/types/FC/human.d.ts +++ b/devTools/types/FC/human.d.ts @@ -371,13 +371,13 @@ declare global { * only affects fetuses */ polyhydramnios: GeneticQuirk; /** inappropriate lactation*/ - galactorrhea: GeneticQuirk; + galactorrhea: GeneticQuirk | 3; /** retains childlike characteristics*/ - neoteny: GeneticQuirk; + neoteny: GeneticQuirk | 3; /** rapid aging * * **neoteny + progeria** - progeria wins, not that she'll make it to the point that neoteny really kicks in */ - progeria: GeneticQuirk, + progeria: GeneticQuirk | 3, } interface FetusGenetics { gender: GenderGenes; diff --git a/src/events/nonRandomEvent.js b/src/events/nonRandomEvent.js index 05bbfce1585183a8310282461996ff5e0bf382cf..b8835e9db648fd7c3d3adbb97a2e0dd2f1b02475 100644 --- a/src/events/nonRandomEvent.js +++ b/src/events/nonRandomEvent.js @@ -135,9 +135,9 @@ App.Events.playNonrandomEvent = function() { App.UI.DOM.appendNewElement("div", linkList, App.UI.DOM.passageLink(event.eventName, passage(), () => { V.event = event; })); } if (events.length > 0) { - App.UI.DOM.appendNewElement("div", d, App.UI.DOM.passageLink("SKIP remaining events and proceed", "Nonrandom Event", clearEvent)); + App.UI.DOM.appendNewElement("div", d, App.UI.DOM.passageLink("SKIP remaining events and proceed", "Nonrandom Event")); } else { - App.UI.DOM.appendNewElement("div", d, App.UI.DOM.passageLink("No more events. Proceed.", "Nonrandom Event", clearEvent)); + App.UI.DOM.appendNewElement("div", d, App.UI.DOM.passageLink("No more events. Proceed.", "Nonrandom Event")); } d.append(App.Events.renderEventDebugger()); } else { diff --git a/src/events/story/rival/pRivalryActions.js b/src/events/story/rival/pRivalryActions.js index 3f28b239a9b4fb9293ae010a58bc17f9eef0105c..2397bee7ee2807f136e71d240b704db2c08c8e08 100644 --- a/src/events/story/rival/pRivalryActions.js +++ b/src/events/story/rival/pRivalryActions.js @@ -3558,6 +3558,7 @@ App.Events.pRivalryActions = function() { r.push(`EKIA. Confirm, E. K. I. A. No other`); } r.push(`casualties, team exfiltrating."`); + V.rivalOwner = 0; V.rivalryPower = 0; if (V.rivalSet !== 0) { for (const arc of V.arcologies) { diff --git a/src/npc/startingGirls/editFamily.js b/src/npc/startingGirls/editFamily.js index c62304af2292d40cee7f52cf816e119d69dfae7d..9f539753821260d705165250644d49bfc20e79f3 100644 --- a/src/npc/startingGirls/editFamily.js +++ b/src/npc/startingGirls/editFamily.js @@ -17,6 +17,7 @@ App.Intro.editFamily = function(slave, cheat) { editFamily.append(makeFamilyTable()); editFamily.append(makeElWithID("family-tree")); el.append(editFamily); + setTimeout(() => App.StartingGirls.uncommittedFamilyTree(slave), 0); return el; diff --git a/src/npc/startingGirls/startingGirls.js b/src/npc/startingGirls/startingGirls.js index 28fc3195983547aad27c0a744b8f357a36de1268..fb5a18b12935dadacf6cc20b45ac73083aaedb34 100644 --- a/src/npc/startingGirls/startingGirls.js +++ b/src/npc/startingGirls/startingGirls.js @@ -291,8 +291,8 @@ App.StartingGirls.listOfSlavesWithParent = function(parent, id) { * @param {App.Entity.SlaveState} slave */ App.StartingGirls.uncommittedFamilyTree = function(slave) { - let tSlaves = V.slaves.concat([slave]); // returns a new array - renderFamilyTree(tSlaves, slave.ID); + let tSlaves = V.slaves.filter(s => s.ID !== slave.ID); // exclude the unedited copy of this slave, if it exists + renderFamilyTree(tSlaves.concat([slave]), slave.ID); }; /** Get the automatic origin that would be used for a slave, without actually changing the slave