From 27f5da1fd5c5b4e2238576f7f2c4bae5e3b70000 Mon Sep 17 00:00:00 2001 From: toaster Date: Wed, 18 Sep 2024 23:01:11 +0100 Subject: [PATCH] Fix typo that was no-selling Race Grief spectatorifying --- src/d_netcmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/d_netcmd.c b/src/d_netcmd.c index 14ec68a8b..328a540e2 100644 --- a/src/d_netcmd.c +++ b/src/d_netcmd.c @@ -3506,7 +3506,7 @@ static void Got_Spectate(const UINT8 **cp, INT32 playernum) // Safety first! // (not respawning spectators here...) const boolean was_spectator = (player->spectator == true); - if (was_spectator == true) + if (was_spectator == false) { if (gamestate == GS_LEVEL && player->mo != NULL) {