From e7d730e3b230d9072fc79543b4b1e725ab31298e Mon Sep 17 00:00:00 2001 From: Latapostrophe Date: Sun, 20 Jan 2019 18:51:45 +0100 Subject: [PATCH] prevent the use of respawn to cheese items like SPB --- src/d_netcmd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/d_netcmd.c b/src/d_netcmd.c index 8272b75d..8bedb526 100644 --- a/src/d_netcmd.c +++ b/src/d_netcmd.c @@ -2489,9 +2489,9 @@ static void Command_Respawn(void) UINT8 *cp = buf; WRITEINT32(cp, consoleplayer); - + if (players[consoleplayer].kartstuff[k_spinouttimer]) // KART: Nice try, but no, you won't be cheesing spb anymore. - { + { CONS_Printf(M_GetText("Cannot use this while hurt.\n")); return; }