From 979d575486d6e15b64efa5af98328a44de4c1f22 Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Mon, 23 Nov 2020 21:22:08 -0500 Subject: [PATCH] change namespace to intro --- src/npc/acquisition.js | 4 ++-- src/npc/acquisition.tw | 2 +- src/npc/databases/cheatmodeDatabase.js | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/npc/acquisition.js b/src/npc/acquisition.js index a0aa1321adb..517f7f60df3 100644 --- a/src/npc/acquisition.js +++ b/src/npc/acquisition.js @@ -1,4 +1,4 @@ -App.StartingGirls.acquisition = function() { +App.Intro.acquisition = function() { const el = new DocumentFragment(); const valueOwed = (V.saveImported === 1) ? 5000 : 50000; @@ -35,7 +35,7 @@ App.StartingGirls.acquisition = function() { const heroSlaves = App.Utils.buildHeroArray().shuffle(); if (V.cheatMode === 1) { r.push(`Since you've elected to take over an arcology with special advantages, you've acquired a very special group of slaves.`); - r.push(App.StartingGirls.cheatModeSlaves()); + r.push(App.Intro.cheatModeSlaves()); } else if (V.saveImported === 1) { r.push(`Since it took some time for you to ensure that your existing stable of slaves were safely moved to ${V.arcologies[0].name}, the previous owner had the time to get most of their things away.`); } else if ((V.targetArcology.fs !== "New") && (V.targetArcology.fs !== "Multiculturalist")) { diff --git a/src/npc/acquisition.tw b/src/npc/acquisition.tw index f0cdad09b93..15af72727f5 100644 --- a/src/npc/acquisition.tw +++ b/src/npc/acquisition.tw @@ -2,4 +2,4 @@ <<set $encyclopedia = "How to Play">> -<<includeDOM App.StartingGirls.acquisition()>> \ No newline at end of file +<<includeDOM App.Intro.acquisition()>> \ No newline at end of file diff --git a/src/npc/databases/cheatmodeDatabase.js b/src/npc/databases/cheatmodeDatabase.js index 0ec1804bd41..d7054ea13f9 100644 --- a/src/npc/databases/cheatmodeDatabase.js +++ b/src/npc/databases/cheatmodeDatabase.js @@ -1,4 +1,4 @@ -App.StartingGirls.cheatModeSlaves = function() { +App.Intro.cheatModeSlaves = function() { const el = new DocumentFragment(); const r = []; const slaveNames = []; -- GitLab