From 79f83d112216548b460404d42e8c6540c86bed5c Mon Sep 17 00:00:00 2001 From: avolkov Date: Sat, 30 Apr 2005 01:06:34 +0000 Subject: [PATCH] First contact at homeworld greeting fix (bug #638) git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@1699 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/sc2code/comm/arilou/arilouc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sc2/src/sc2code/comm/arilou/arilouc.c b/sc2/src/sc2code/comm/arilou/arilouc.c index 9bdf0df13..3a6be9070 100644 --- a/sc2/src/sc2code/comm/arilou/arilouc.c +++ b/sc2/src/sc2code/comm/arilou/arilouc.c @@ -643,13 +643,14 @@ Intro (void) { RESPONSE_FUNC RespFunc; - NPCPhrase (INIT_HELLO); if (GET_GAME_STATE (ARILOU_SPACE_SIDE) <= 1) { + NPCPhrase (INIT_HELLO); RespFunc = (RESPONSE_FUNC)FriendlySpaceArilou; } else { + NPCPhrase (FRDLY_HOMEWORLD_HELLO_1); RespFunc = (RESPONSE_FUNC)ArilouHome; SET_GAME_STATE (ARILOU_HOME_VISITS, 1); }