From 688bf0158d11dcd427c247cac99b6dbb430e22df Mon Sep 17 00:00:00 2001 From: Louis-Antoine Date: Sun, 17 Nov 2019 23:46:34 +0100 Subject: [PATCH] Disable Tails carrying for players who completed the level To avoid trolls... --- src/p_map.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/p_map.c b/src/p_map.c index bb56a50b1..82403b947 100644 --- a/src/p_map.c +++ b/src/p_map.c @@ -592,6 +592,9 @@ static void P_DoTailsCarry(player_t *sonic, player_t *tails) if (!(tails->pflags & PF_CANCARRY)) return; + if (sonic->pflags & PF_FINISHED) + return; + if (tails->bot == 1) return;