diff --git a/sc2/content/comm/mycon/mycon.ts b/sc2/content/comm/mycon/mycon.ts index 0363752ad..e86fe2184 100644 --- a/sc2/content/comm/mycon/mycon.ts +++ b/sc2/content/comm/mycon/mycon.ts @@ -106,3 +106,4 @@ #(AMBUSH_TAIL) #(RAMBLE_TAIL) #(WE_GO_TO_IMPLANT) 6089,4106,4667,2623,5388,4857,2854,6059 +#(WONT_FALL_FOR_TRICK) 2500 diff --git a/sc2/content/comm/mycon/mycon.txt b/sc2/content/comm/mycon/mycon.txt index 98d57d968..b3064f959 100755 --- a/sc2/content/comm/mycon/mycon.txt +++ b/sc2/content/comm/mycon/mycon.txt @@ -303,10 +303,10 @@ We have come to your homeworld to seek a truce. Heinous fungus! Submit to our will! #(bye_sun_device) -bye sun device +We'll just be going now. #(GOODBYE_SUN_DEVICE) mycon051.ogg -GOODBYE SUN DEVICE +You are the Non. You must go now, and never return. #(RESPONSE_1) mycon052.ogg This is good. @@ -412,3 +412,6 @@ and let its tendrils spread through your flesh then you would truly understand Juffo-Wup... become part of Juffo-Wup. You WOULD be happier and more fulfilled. Consider our offer. +#(WONT_FALL_FOR_TRICK) mycon066.ogg +This is a special place. +You must go. Now. diff --git a/sc2/src/sc2code/comm/mycon/myconc.c b/sc2/src/sc2code/comm/mycon/myconc.c index 70fc7154e..66a743ae2 100644 --- a/sc2/src/sc2code/comm/mycon/myconc.c +++ b/sc2/src/sc2code/comm/mycon/myconc.c @@ -270,7 +270,7 @@ SunDevice (RESPONSE_REF R) } else if (PLAYER_SAID (R, i_have_a_cunning_plan)) { - NPCPhrase (DIE_LIAR /* WONT_FALL_FOR_TRICK */); + NPCPhrase (WONT_FALL_FOR_TRICK); SET_GAME_STATE (NO_TRICK_AT_SUN, 1); } diff --git a/sc2/src/sc2code/comm/mycon/strings.h b/sc2/src/sc2code/comm/mycon/strings.h index dff78ac2f..e25ed849c 100644 --- a/sc2/src/sc2code/comm/mycon/strings.h +++ b/sc2/src/sc2code/comm/mycon/strings.h @@ -130,6 +130,7 @@ enum AMBUSH_TAIL, RAMBLE_TAIL, WE_GO_TO_IMPLANT, + WONT_FALL_FOR_TRICK, }; #endif /* _STRINGS_H */