From dbc25481cf6ad8c37ccb6e769ef387e505bf313a Mon Sep 17 00:00:00 2001 From: NepDisk <16447892+NepDisk@users.noreply.github.com> Date: Wed, 9 Oct 2024 13:57:56 -0400 Subject: [PATCH] Whoops forgot to save this after death --- src/g_game.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/g_game.c b/src/g_game.c index e12e58691..c295e1e97 100644 --- a/src/g_game.c +++ b/src/g_game.c @@ -2217,6 +2217,7 @@ void G_PlayerReborn(INT32 player, boolean betweenmaps) INT16 totalring; UINT8 laps; UINT8 latestlap; + boolean lapvalidation; UINT16 skincolor; INT32 skin; UINT32 availabilities; @@ -2307,6 +2308,7 @@ void G_PlayerReborn(INT32 player, boolean betweenmaps) nocontrol = 0; laps = 0; latestlap = 0; + lapvalidation = false; roundscore = 0; exiting = 0; khudcardanimation = 0; @@ -2353,6 +2355,7 @@ void G_PlayerReborn(INT32 player, boolean betweenmaps) laps = players[player].laps; latestlap = players[player].latestlap; + lapvalidation = players[player].lapvalidation; roundscore = players[player].roundscore; @@ -2433,6 +2436,7 @@ void G_PlayerReborn(INT32 player, boolean betweenmaps) p->laps = laps; p->latestlap = latestlap; + p->lapvalidation = lapvalidation; p->totalring = totalring; p->bot = bot;