diff --git a/sc2/content/comm/talkpet/talkpet.ts b/sc2/content/comm/talkpet/talkpet.ts index b49ef1252..745688143 100644 --- a/sc2/content/comm/talkpet/talkpet.ts +++ b/sc2/content/comm/talkpet/talkpet.ts @@ -109,3 +109,4 @@ #(enough_info) #(OK_ENOUGH_INFO) #(UMGAH_ALL_GONE) 6499,6289,5879,4907,5317,3666,3435,7140,4406,6089,6389,4737,2403,1773,5157,6730,1833,8272,3194,5478,3836,4777,1422,1942,5028,6519 +#(HELLO_AFTER_COMPEL_URQUAN) 3000,2500 diff --git a/sc2/content/comm/talkpet/talkpet.txt b/sc2/content/comm/talkpet/talkpet.txt index e0d0f528d..d9200818b 100755 --- a/sc2/content/comm/talkpet/talkpet.txt +++ b/sc2/content/comm/talkpet/talkpet.txt @@ -614,3 +614,7 @@ I have an offer: instead of killing me, I will join you on your ship. I can be of invaluable assistance to you when it comes time for your final confrontation with the Ur-Quan. I see you are speechless with approval. I'll be right over. +#(HELLO_AFTER_COMPEL_URQUAN) talkp073.ogg +WHAT ARE YOU DOING, IDIOT!! +DON'T TALK TO ME! +GO ATTACK THE SA-MATRA!! diff --git a/sc2/src/sc2code/comm/talkpet/strings.h b/sc2/src/sc2code/comm/talkpet/strings.h index 930175aad..2bbd5b63f 100644 --- a/sc2/src/sc2code/comm/talkpet/strings.h +++ b/sc2/src/sc2code/comm/talkpet/strings.h @@ -133,6 +133,7 @@ enum enough_info, OK_ENOUGH_INFO, UMGAH_ALL_GONE, + HELLO_AFTER_COMPEL_URQUAN, }; #endif /* _STRINGS_H */ diff --git a/sc2/src/sc2code/comm/talkpet/talkpet.c b/sc2/src/sc2code/comm/talkpet/talkpet.c index e3873ab15..d2f70a967 100644 --- a/sc2/src/sc2code/comm/talkpet/talkpet.c +++ b/sc2/src/sc2code/comm/talkpet/talkpet.c @@ -669,7 +669,7 @@ Intro (void) } else if (GET_GAME_STATE (URQUAN_MESSED_UP)) { - NPCPhrase (NULL_PHRASE /* HELLO_AFTER_COMPEL_URQUAN */); + NPCPhrase (HELLO_AFTER_COMPEL_URQUAN); SET_GAME_STATE (BATTLE_SEGUE, 0); }