mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-21 18:32:08 +00:00
Disable Tails carrying for players who completed the level
To avoid trolls...
This commit is contained in:
parent
6c98a150be
commit
688bf0158d
1 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue