From e557d9920aede00bc543bf668e31903fa36f7869 Mon Sep 17 00:00:00 2001 From: onpon4 Date: Fri, 8 Jan 2016 10:37:19 -0500 Subject: [PATCH] Removed the suggestion from the Comms screen that Phoebe's name is unknown. I think this might partly be because of my dialog changes, but this causes a minor continuity error, since the mission clearly states that you're rescuing "Phoebe Lexx", and there's also the fact that the indicator now says "Phoebe" instead of "Target". I figure just make her name known from the start; the explanation can be that the ship automatically transmits the name. --- data/planets_eyananth.dat | 2 +- src/intermission.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/planets_eyananth.dat b/data/planets_eyananth.dat index edbb403..f8fd952 100644 --- a/data/planets_eyananth.dat +++ b/data/planets_eyananth.dat @@ -32,7 +32,7 @@ NONE 7 1 FACE_PHOEBE -??????????? (Nerod) +Phoebe Lexx (Nerod) SOS 8 2 diff --git a/src/intermission.cpp b/src/intermission.cpp index 2c8564b..b135776 100644 --- a/src/intermission.cpp +++ b/src/intermission.cpp @@ -502,7 +502,7 @@ static void intermission_createMissionDetailSurface(SDL_Surface *comms, int miss break; case MISN_NEROD: - strcpy(name, "(unknown)"); + strcpy(name, "Phoebe Lexx"); strcpy(string, "Help! This is an SOS! Can anyone hear me?!"); y = intermission_renderDialog(comms, y, FS_PHOEBE, string);