From f23a8ae4b4f3d2fd14f4aaf24b3ff6dcdd6c678f Mon Sep 17 00:00:00 2001
From: Ben987 <30805159+Ben987@users.noreply.github.com>
Date: Thu, 27 Sep 2018 19:02:49 -0400
Subject: [PATCH] Proof Reading and Bug Fixes

Proof Reading and Bug Fixes
---
 .../Shower1.jpg                               | Bin
 .../Shower2.jpg                               | Bin
 C012_AfterClass/Pool/Intro_EN.csv             |   5 +--
 C012_AfterClass/Pool/Script.js                |   8 +++--
 C012_AfterClass/Pool/Stage_EN.csv             |  32 +++++++++---------
 C012_AfterClass/Roommates/Intro_EN.csv        |   8 +++--
 C012_AfterClass/Roommates/Script.js           |  31 ++++++++++++++++-
 C012_AfterClass/Roommates/Stage_EN.csv        |   5 ++-
 C012_AfterClass/Roommates/Text_EN.csv         |   1 +
 9 files changed, 65 insertions(+), 25 deletions(-)
 rename C012_AfterClass/Pool/57ba55c684828.image.jpg => Backgrounds/Shower1.jpg (100%)
 rename C012_AfterClass/Pool/57ba560aef238.image.jpg => Backgrounds/Shower2.jpg (100%)

diff --git a/C012_AfterClass/Pool/57ba55c684828.image.jpg b/Backgrounds/Shower1.jpg
similarity index 100%
rename from C012_AfterClass/Pool/57ba55c684828.image.jpg
rename to Backgrounds/Shower1.jpg
diff --git a/C012_AfterClass/Pool/57ba560aef238.image.jpg b/Backgrounds/Shower2.jpg
similarity index 100%
rename from C012_AfterClass/Pool/57ba560aef238.image.jpg
rename to Backgrounds/Shower2.jpg
diff --git a/C012_AfterClass/Pool/Intro_EN.csv b/C012_AfterClass/Pool/Intro_EN.csv
index 0cef0d3ac9..f4e573dbc5 100644
--- a/C012_AfterClass/Pool/Intro_EN.csv
+++ b/C012_AfterClass/Pool/Intro_EN.csv
@@ -1,5 +1,6 @@
 Stage,LoveReq,SubReq,VarReq,IntroText,Image
-0,0,0,EmptyPool,"You arrive at the college pool, but|nobody is swimming right now.",PoolEmpty.jpg
+0,0,0,,You arrive at the college pool.|Nobody is swimming right now.,PoolEmpty.jpg
+0,0,0,JenniferAvail,You arrive at the college pool.|Jennifer is swimming alone.,PoolEmpty.jpg
 10,0,0,,,PoolSwimAlone.jpg
 20,0,0,,,PoolSwimMoves.jpg
 100,0,0,,,Showers.jpg
@@ -14,7 +15,7 @@ Stage,LoveReq,SubReq,VarReq,IntroText,Image
 160,0,0,,(The bully stares at you and laughs.)|Get lost girl!  You're no match for me.,Showers.jpg
 170,0,0,,"(The bully bows her head in shame.)|You won, you can have that bitch.",Showers.jpg
 180,0,0,,,Showers.jpg
-200,0,0,,(You start to swim and chat with Jennifer.)|You didn't helped me much with that bully.,PoolSwimWithJennifer.jpg
+200,0,0,,(You start to swim and chat with Jennifer.)|You didn't help me much with that bully.,PoolSwimWithJennifer.jpg
 201,0,0,,,PoolSwimWithJennifer.jpg
 210,0,0,,(You start to swim and chat with Jennifer.)|Thanks for trying to help with that bully.,PoolSwimWithJennifer.jpg
 211,0,0,,,PoolSwimWithJennifer.jpg
diff --git a/C012_AfterClass/Pool/Script.js b/C012_AfterClass/Pool/Script.js
index 8e9a172a6c..ca295b0fd0 100644
--- a/C012_AfterClass/Pool/Script.js
+++ b/C012_AfterClass/Pool/Script.js
@@ -1,5 +1,4 @@
 var C012_AfterClass_Pool_CurrentStage = 0;
-var C012_AfterClass_Pool_EmptyPool = true;
 var C012_AfterClass_Pool_IntroText = "";
 var C012_AfterClass_Pool_CurrentActor = "";
 var C012_AfterClass_Pool_HasSports = false;
@@ -10,7 +9,7 @@ var C012_AfterClass_Pool_SwimTimeWithJennifer = 0;
 
 // Chapter 12 After Class - Check who's in the Pool
 function C012_AfterClass_Pool_WhoInIsPool() {
-	C012_AfterClass_Pool_JenniferAvail = (GameLogQuery(CurrentChapter, "Jennifer", "PoolBullyMet") && !GameLogQuery(CurrentChapter, "Jennifer", "EnterDormFromPool") && (CurrentTime >= 19 * 60 * 60 * 1000) && (CurrentTime < 22 * 60 * 60 * 1000));
+	C012_AfterClass_Pool_JenniferAvail = (GameLogQuery(CurrentChapter, "Jennifer", "PoolBullyMet") && !GameLogQuery(CurrentChapter, "Jennifer", "EnterDormFromPool") && !GameLogQuery(CurrentChapter, "Jennifer", "EnterDormFromRoommates") && (CurrentTime >= 19 * 60 * 60 * 1000) && (CurrentTime < 22 * 60 * 60 * 1000));
 }
 
 // Chapter 12 After Class - Pool Load
@@ -118,7 +117,8 @@ function C012_AfterClass_Pool_SearchShower() {
 // Chapter 12 After Class - When the player enters the shower, it can trigger the Jennifer event between 19 and 22
 function C012_AfterClass_Pool_EnterShower() {
 	CurrentTime = CurrentTime + 50000;
-	if (!GameLogQuery(CurrentChapter, "Jennifer", "PoolBullyMet") && (CurrentTime >= 19 * 60 * 60 * 1000) && (CurrentTime < 22 * 60 * 60 * 1000)) {
+	Common_PlayerPose = "";
+	if (!GameLogQuery(CurrentChapter, "Jennifer", "PoolBullyMet") && !GameLogQuery(CurrentChapter, "Jennifer", "EnterDormFromPool") && !GameLogQuery(CurrentChapter, "Jennifer", "EnterDormFromRoommates") && (CurrentTime >= 19 * 60 * 60 * 1000) && (CurrentTime < 22 * 60 * 60 * 1000)) {
 		GameLogSpecificAdd(CurrentChapter, "Jennifer", "PoolBullyMet")
 		OverridenIntroText = GetText("BullyIntro");
 		C012_AfterClass_Pool_CurrentStage = 110;
@@ -132,6 +132,7 @@ function C012_AfterClass_Pool_EnterShower() {
 // Chapter 12 After Class - When the player goes back to the pool
 function C012_AfterClass_Pool_EnterPool() {
 	CurrentTime = CurrentTime + 50000;
+	CurrentActor = "";
 	C012_AfterClass_Pool_WhoInIsPool();
 }
 
@@ -202,5 +203,6 @@ function C012_AfterClass_Pool_LeaveWithJennifer() {
 	GameLogAdd("EnterDormFromPool");
 	C012_AfterClass_Pool_JenniferAvail = false;
 	OverridenIntroImage = "";
+	C012_AfterClass_Pool_CurrentActor = "";
 	C012_AfterClass_Pool_Leave();
 }
\ No newline at end of file
diff --git a/C012_AfterClass/Pool/Stage_EN.csv b/C012_AfterClass/Pool/Stage_EN.csv
index 43ff560f06..9361d2e222 100644
--- a/C012_AfterClass/Pool/Stage_EN.csv
+++ b/C012_AfterClass/Pool/Stage_EN.csv
@@ -1,7 +1,7 @@
 Stage,LoveReq,SubReq,VarReq,Interaction,Result,NextStage,LoveMod,SubMod,Function
 0,0,0,,Wait for a while.,You sit down for a while and|check who is coming or leaving.,0,0,0,Wait()
 0,0,0,,Check the showers.,The showers are empty.,100,0,0,EnterShower()
-0,0,0,JenniferAvail,Swim with Jennifer.,,220,0,0,SwimWithJennifer()
+0,0,0,JenniferAvail,Swim with Jennifer.,,230,0,0,SwimWithJennifer()
 0,0,0,,Swim alone.,You swim alone for a while.|It's a good exercise and it's relaxing.,10,0,0,Swim()
 0,0,0,,Search the place.,You find some lifejackets and lifebuoys|but nothing that's really interesting.,0,0,0,Search()
 0,0,0,,Return to your dorm.,,0,0,0,Leave()
@@ -26,7 +26,7 @@ Stage,LoveReq,SubReq,VarReq,Interaction,Result,NextStage,LoveMod,SubMod,Function
 120,0,0,,I'm not going|anywhere girl.,Stay if you want.  She's my bitch anyway.|(She turns to Jennifer and point at her.),130,0,1,FaceEachOther()
 120,0,0,,Are you bullying her?,I can do what I want.  She's my bitch.|(She turns to Jennifer and point at her.),130,1,0,FaceEachOther()
 120,0,0,,Run Jennifer!|(Run away.),(You both run back to the pool|and Jennifer quickly jumps in.),0,1,-2,EnterPool()
-130,0,0,,"Jennifer, are|you her bitch?","(Jennifer shakes her head no and get slapped.)|Oh yes you are, and you will wear my collar!",140,0,0,
+130,0,0,,Are you her|bitch Jennifer?,"(Jennifer shakes her head no and get slapped.)|Oh yes you are, and you will wear my collar!",140,0,0,
 130,0,0,,She doesn't seem|to agree with you.,"(Jennifer shakes her head no and get slapped.)|You're my bitch, and you will wear my collar!",140,0,0,
 130,0,0,,Please let her go.|She's not consenting.,"(Jennifer shakes her head no and get slapped.)|You're my bitch, and you will wear my collar!",140,1,-1,
 130,0,0,,"If she's your bitch,|you should collar her.","(Jennifer shakes her head no and get slapped.)|Damn right bitch, you will wear my collar!",140,-1,1,
@@ -35,7 +35,7 @@ Stage,LoveReq,SubReq,VarReq,Interaction,Result,NextStage,LoveMod,SubMod,Function
 140,0,0,,You can't collar her.|She's my submissive.,(The girl raises her fist at you.)|Oh yeah?  You want to fight for her?,150,0,1,FaceFront()
 140,0,0,,You're in deep|trouble Jennifer.,(The girl raises her fist at you.)|Get outta here or I'll crush you!,150,-1,0,FaceFront()
 140,0,0,,(Stay silent.),(The girl raises her fist at you.)|Now get outta here or I'll crush you!,150,0,-1,FaceFront()
-150,0,0,,You wanna fight?|(Fight with her.),,150,1,1,Fight()
+150,0,0,,Stand back Jennifer.|(Fight with her.),,150,1,1,Fight()
 150,0,0,,You're fucking dead!|(Fight with her.),,150,0,2,Fight()
 150,0,0,,Fine.  I'm leaving.|(Go back to the pool.),(You walk back while Jennifer sprints|behind you and jumps in the pool.),0,-1,-1,EnterPool()
 150,0,0,,Run Jennifer!|(Run away.),(You both run back to the pool|and Jennifer quickly jumps in.),0,1,-2,EnterPool()
@@ -53,27 +53,27 @@ Stage,LoveReq,SubReq,VarReq,Interaction,Result,NextStage,LoveMod,SubMod,Function
 201,0,0,,You should|humiliate her.,It would only make things worse.|Thanks for the advice anyway.,230,-1,0,
 201,0,0,,You should make|peace with her.,"Very wise, but it won't be easy.|Thanks for the good advice.",230,1,0,
 201,0,0,,You should|ignore her.,It's not easy but it could work.|Thanks for the advice.,230,0,0,
-210,0,0,,It was a|fair fight.,You fought bravely.  I wish I had your courage.|I do martial art but I freeze in front of bullies.,211,1,0,
-210,0,0,,That bitch is|fighting dirty.,She's pretty tough.  I wish I had your courage.|I do martial art but I freeze in front of bullies.,211,-1,0,
-210,0,0,,Next time I|will crush her.,You fought bravely.  I wish I had your courage.|I do martial art but I freeze in front of bullies.,211,0,1,
-210,0,0,,Maybe it wasn't the|best idea to fight.,You fought bravely.  I wish I had your courage.|I do martial art but I freeze in front of bullies.,211,0,0,
-210,0,0,,I'm in a lot|of pain now.,I bet it must hurt.  I wish I had your courage.|I do martial art but I freeze in front of bullies.,211,0,-1,
+210,0,0,,It was a|fair fight.,"You fought bravely.  I wish I had your courage.|I do martial art, but I freeze in front of bullies.",211,1,0,
+210,0,0,,That bitch is|fighting dirty.,"She's pretty tough.  I wish I had your courage.|I do martial art, but I freeze in front of bullies.",211,-1,0,
+210,0,0,,Next time I|will crush her.,"You fought bravely.  I wish I had your courage.|I do martial art, but I freeze in front of bullies.",211,0,1,
+210,0,0,,Maybe it wasn't the|best idea to fight.,"You fought bravely.  I wish I had your courage.|I do martial art, but I freeze in front of bullies.",211,0,0,
+210,0,0,,I'm in a lot|of pain now.,"I bet it must hurt.  I wish I had your courage.|I do martial art, but I freeze in front of bullies.",211,0,-1,
 211,0,0,,It's never easy|to face bullies.,"I know, next time I should fight like you.",230,0,0,
-211,0,0,,We should watch and|protect each other.,That's a really good idea.|Thanks a lot COMMON_PLAYERNAME.,230,1,-1,
-211,0,0,,We should amush her|and get revenge.,It's a very dangerous idea.|It could make things worse.,230,-1,1,
+211,0,0,,We should watch and|protect each other.,"That's a really good idea.|Thanks a lot, COMMON_PLAYERNAME.",230,1,-1,
+211,0,0,,We should ambush|her to get revenge.,It's a very dangerous idea.|It could make things worse.,230,-1,1,
 211,0,0,,You should have|faith in yourself.,"I know, next time I should fight like you.",230,0,0,
 220,0,0,,"I was lucky, we|could've got hurt.","Maybe, but you fought bravely and won.|You're a role model for me COMMON_PLAYERNAME.",221,0,-1,
-220,0,0,,You liked the fight?,I did!  You fought bravely and you won.|You're a role model for me COMMON_PLAYERNAME.,221,0,0,
-220,0,0,,I could crush|her any time.,Impressive!  You fought bravely and you won.|You're a role model for me COMMON_PLAYERNAME.,221,0,1,
+220,0,0,,You liked the fight?,"I did!  You fought bravely, and you won.|You're a role model for me COMMON_PLAYERNAME.",221,0,0,
+220,0,0,,I could crush|her any time.,"Impressive!  You fought bravely, and you won.|You're a role model for me COMMON_PLAYERNAME.",221,0,1,
 221,0,0,,Don't mention it.,You're so nice and humble.|Thanks again for your help.,230,1,0,
 221,0,0,,We should have|stolen her clothes.,Oh no!  That would be too humiliating.|Anyway.  Thanks again for your help.,230,-1,0,
-221,0,10,,I could more than|a model you know?,More than a model?  Like a sensei?,222,0,0,
-221,0,10,,Maybe I should|collar you girl.,Collar me?  What does that mean?,222,0,0,
+221,0,10,,I could be more than|a model you know?,More than a model?  Like a sensei?,222,0,0,
+221,0,10,,Maybe I should use|that collar on you.,Use the collar on me?|What does that mean?,222,0,0,
 222,0,0,,I'll explain|everything later.,I'm really curious now Miss.|Well thanks again for helping.,230,0,0,
 222,0,0,,It's not a good place|to talk about that.,I'm really curious now Miss.|Well thanks again for helping.,230,0,0,
 230,0,0,,(Swim with her.),(You swim together and|share some good times.),230,0,0,SwimTogether()
-230,0,0,,So you swim|here all night?,I come here to relax after my running session.,231,0,0,
-230,0,0,,You come|here often?,"Everytime I go running,|I come here right after.",231,0,0,
+230,0,0,,"So, you swim|here all night?",I come here to relax after my running session.,231,0,0,
+230,0,0,,You come|here often?,"Every time I go running,|I come here right after.",231,0,0,
 230,0,0,,Are you feeling|better now?,I'm fine thanks.  I think she left the place.|I know she can't swim so I'm safe in here.,235,0,0,
 230,0,0,,Is the bully|still around?,I think she left the place.  I hope so.|I know she can't swim so I'm safe in here.,235,0,0,
 230,0,0,,(Get out of the pool.),You get out of the water.,0,0,0,UnloadJennifer()
diff --git a/C012_AfterClass/Roommates/Intro_EN.csv b/C012_AfterClass/Roommates/Intro_EN.csv
index 5f86371d53..e36f31142c 100644
--- a/C012_AfterClass/Roommates/Intro_EN.csv
+++ b/C012_AfterClass/Roommates/Intro_EN.csv
@@ -8,8 +8,6 @@ Stage,LoveReq,SubReq,VarReq,IntroText,Image
 100,0,0,Common_ActorIsLover,(Amanda opens the door and kisses you.)|Welcome my love.  Do you need something?,
 100,0,0,Common_ActorIsOwner,(Amanda opens the door and lets you in.)|Hello my submissive.  Do you need something?,
 100,0,0,Common_ActorIsOwned,(Amanda opens the door and greets you.)|Welcome to my place Mistress.  Do you need something?,
-110,0,0,,,
-120,0,0,,,
 200,0,0,,(Sarah opens the door and lets you in.)|Hey!  What's going on COMMON_PLAYERNAME?,
 200,10,0,,(Sarah opens the door and smiles.)|Hey!  What's going on my friend?,
 200,-10,0,,(Sarah opens the door and lets you in.)|Why are you here?  What's going on?,
@@ -18,3 +16,9 @@ Stage,LoveReq,SubReq,VarReq,IntroText,Image
 200,0,0,Common_ActorIsLover,(Sarah opens the door and smiles.)|Hey there sexy!  What's going on?,
 200,0,0,Common_ActorIsOwned,(Sarah opens the door and greets you.)|Greetings Mistress.  What's going on?,
 200,0,0,IsolationVisit,(Sarah opens the door and smiles.)|My isolation partner!  What's going on?,
+300,0,0,,(Jennifer comes to greet you.)|Hello COMMON_PLAYERNAME.,
+300,10,0,,"(Jennifer comes to greet you.)|Hello there, I'm glad to see you.",
+300,-10,0,,(Jennifer comes to greet you.)|What are you doing here?,
+300,0,-10,,(Jennifer comes to greet you.)|Hi girl.  Do you need help?,
+300,0,0,JenniferBelt,(Jennifer comes to greet you.)|I hope you came with the belt key.,
+300,0,10,,(Jennifer comes to greet you.)|Greetings.  It's a pleasure to see you.,
diff --git a/C012_AfterClass/Roommates/Script.js b/C012_AfterClass/Roommates/Script.js
index 1f2c60f51f..091fe2f6c8 100644
--- a/C012_AfterClass/Roommates/Script.js
+++ b/C012_AfterClass/Roommates/Script.js
@@ -8,6 +8,7 @@ var C012_AfterClass_Roommates_ModifierLove = 0;
 var C012_AfterClass_Roommates_ModifierSub = 0;
 var C012_AfterClass_Roommates_IsolationAvail = true;
 var C012_AfterClass_Roommates_IsolationVisit = false;
+var C012_AfterClass_Roommates_JenniferBelt = false;
 
 // Chapter 12 After Class - Roommates Load
 function C012_AfterClass_Roommates_Load() {
@@ -78,6 +79,7 @@ function C012_AfterClass_Roommates_Knock() {
 		if (ActorGetValue(ActorLove) <= -10) ActorSetPose("Angry");
 		ActorSetCloth("Pajamas");
 		C012_AfterClass_Roommates_CurrentStage = 100;
+		return;
 	}
 
 	// Sarah is available before 20:00
@@ -92,8 +94,12 @@ function C012_AfterClass_Roommates_Knock() {
 			if (ActorGetValue(ActorSubmission) <= -10) ActorSetPose("Cocky");
 			ActorSetCloth("BrownDress");
 			C012_AfterClass_Roommates_CurrentStage = 200;
+			return;
 		}
-	
+
+	// Jennifer is available before 19:00 but Sarah answers first if she's there
+	if ((CurrentTime < 19 * 60 * 60 * 1000) && !GameLogQuery(CurrentChapter, "Jennifer", "EnterDormFromRoommates")) C012_AfterClass_Roommates_LoadJennifer();
+
 }
 
 // Chapter 12 After Class - When the player chit-chats with the actor
@@ -176,4 +182,27 @@ function C012_AfterClass_Roommates_TestRefuseIsolation() {
 		OverridenIntroText = GetText("CannotRefuseIsolation");
 		C012_AfterClass_Roommates_CurrentStage = 225;
 	}
+}
+
+// Chapter 12 After Class - Sarah can introduce the player to Jennifer
+function C012_AfterClass_Roommates_CheckJenniferAvail() {
+	if ((CurrentTime < 19 * 60 * 60 * 1000) && !GameLogQuery(CurrentChapter, "Jennifer", "EnterDormFromPool") && !GameLogQuery(CurrentChapter, "Jennifer", "EnterDormFromRoommates")) {
+		C012_AfterClass_Roommates_CurrentStage = 202;
+		OverridenIntroText = GetText("SarahIntroduceJennifer");
+	}
+}
+
+// Chapter 12 After Class - Loads Jennifer
+function C012_AfterClass_Roommates_LoadJennifer() {
+	OverridenIntroText = "";
+	ActorLoad("Jennifer", "Dorm");
+	LeaveIcon = "";
+	C012_AfterClass_Roommates_JenniferBelt = (ActorHasInventory("ChastityBelt"));
+	/*if (ActorGetValue(ActorLove) >= 10) ActorSetPose("Happy");
+	if (ActorGetValue(ActorLove) <= -10) ActorSetPose("Angry");
+	if (ActorGetValue(ActorSubmission) >= 10) ActorSetPose("Shy");
+	if (ActorGetValue(ActorSubmission) <= -10) ActorSetPose("Cocky");*/
+	ActorSetCloth("");
+	C012_AfterClass_Roommates_CurrentStage = 300;
+	return;
 }
\ No newline at end of file
diff --git a/C012_AfterClass/Roommates/Stage_EN.csv b/C012_AfterClass/Roommates/Stage_EN.csv
index 8358eff6c5..ac24772636 100644
--- a/C012_AfterClass/Roommates/Stage_EN.csv
+++ b/C012_AfterClass/Roommates/Stage_EN.csv
@@ -19,11 +19,12 @@ Stage,LoveReq,SubReq,VarReq,Interaction,Result,NextStage,LoveMod,SubMod,Function
 200,0,0,,What's going on?,"Not much, It's pretty quiet right now.|So?  Did you get in trouble in school?",220,0,0,TestIsolationSarah()
 200,0,0,,Amanda is here?,"No, she might be at the library.",200,0,0,
 200,0,0,,Sidney is here?,"Nope, maybe the zoo came to get her.",200,0,0,
-200,0,0,,Jennifer is here?,"JENNNNNNNNNIFER!  (She waits.)|Nope, she's not here or she's deaf.",200,0,0,
+200,0,0,,Jennifer is here?,"JENNNNNNNNNIFER!  (She waits.)|Nope, she's not here or she's deaf.",200,0,0,CheckJenniferAvail()
 200,0,0,,"Sorry, wrong door.|(Leave the place.)",,200,0,0,Leave()
 201,0,0,,Very well Sarah.|(Back to your dorm.),,201,0,0,Leave()
 201,0,0,,Have fun tonight!|(Back to your dorm.),,201,1,0,Leave()
 201,0,0,,Fine!  You suck.|(Back to your dorm.),,201,-1,0,Leave()
+202,0,0,,Thanks Sarah!|(Wait for Jennifer.),,300,0,0,LoadJennifer()
 210,0,0,,(Chit-chat with Sarah.),(You chit-chat about music and parties|and get to know each other better.),210,0,0,ChitChat()
 210,0,0,,We could setup a|party at my place.,That's a pretty cool idea but I|already have plans for tonight.,210,0,0,TestInviteSarah()
 210,0,0,,Do you want to|go visit my place?,"No thanks, I have a big evening to plan.",210,0,0,TestInviteSarah()
@@ -52,3 +53,5 @@ Stage,LoveReq,SubReq,VarReq,Interaction,Result,NextStage,LoveMod,SubMod,Function
 224,0,0,,Yes!  Let's go now.|(Visit the basement.),,224,1,0,EnterIsolation()
 224,0,0,,No.  It's a bad idea.,(She looks disappointed.)  Very well.|We can stay here and chat if you prefer.,210,-1,0,TestRefuseIsolation()
 225,0,0,,Alright Miss.|(Visit the basement.),,225,1,-1,EnterIsolation()
+300,0,0,,TO DO,TO DO,300,0,0,
+300,0,0,,I need to go Jennifer.|(Return to your dorm.),,0,0,0,Leave()
diff --git a/C012_AfterClass/Roommates/Text_EN.csv b/C012_AfterClass/Roommates/Text_EN.csv
index a26ae284cc..f6bb2a732f 100644
--- a/C012_AfterClass/Roommates/Text_EN.csv
+++ b/C012_AfterClass/Roommates/Text_EN.csv
@@ -7,3 +7,4 @@ GoDormIsolationSarah,"After our basement trip, I would love to see|your place.
 NoIsolationIntroSarah,It's pretty quiet for now.|We can chat if you want.
 CannotRefuseIsolation,(Sarah grabs your arm forcefully and frowns.)|You only live once girl.  Come with me.
 SarahKickOutAfter20,I'm sorry but I can't chat anymore.|I need to go to a club downtown.
+SarahIntroduceJennifer,JENNNNNNNNN!  (You hear noises.)|Yep!  She's coming right up.