From 3ae90b70018679d68188facc9e4e166a64060434 Mon Sep 17 00:00:00 2001 From: tmyqlfpir <80724828+tmyqlfpir@users.noreply.github.com> Date: Thu, 15 Feb 2024 22:07:36 +1000 Subject: [PATCH] Use kGameTypeCoop enum --- source/blood/src/player.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blood/src/player.cpp b/source/blood/src/player.cpp index cd3496b07..17db84622 100644 --- a/source/blood/src/player.cpp +++ b/source/blood/src/player.cpp @@ -673,7 +673,7 @@ void playerStart(int nPlayer, int bNewLevel) ZONE* pStartZone = NULL; // normal start position - if (gGameOptions.nGameType <= 1) + if (gGameOptions.nGameType <= kGameTypeCoop) pStartZone = &gStartZone[nPlayer]; #ifdef NOONE_EXTENSIONS