From af55539daa5f4108d581a103f0280c3e39c6a908 Mon Sep 17 00:00:00 2001 From: Steve Date: Sun, 15 May 2016 17:28:31 +0100 Subject: [PATCH] Only speak if you're on the same side as the player..! --- 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 564515d..d0469e8 100644 --- a/src/battle/messageBox.c +++ b/src/battle/messageBox.c @@ -169,7 +169,7 @@ static void nextMessage(void) return; } - if (isWingmate && e->type == ET_FIGHTER && e->speed > 0) + if (isWingmate && e->side == player->side && e->type == ET_FIGHTER && e->speed > 0) { wingmate = e;