From 268a7165e757654d56f465a95c6151c0b29aa0c9 Mon Sep 17 00:00:00 2001 From: Steve Date: Mon, 16 May 2016 17:04:49 +0100 Subject: [PATCH] Attempt to prevent the last speaker from becoming the chosen wingmate. --- src/battle/messageBox.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/battle/messageBox.c b/src/battle/messageBox.c index e7e3d99..e9ec496 100644 --- a/src/battle/messageBox.c +++ b/src/battle/messageBox.c @@ -165,7 +165,7 @@ static void nextMessage(void) { if (strcmp(e->name, head.next->title) == 0) { - battle.messageSpeaker = e; + battle.messageSpeaker = lastWingmate = e; return; }