From 43ca8fe6d0a1c12e267ec30bc412cb6551add9d7 Mon Sep 17 00:00:00 2001
From: Sky Dusk <47698279+Ace-Lite@users.noreply.github.com>
Date: Tue, 4 Feb 2025 13:09:26 +0100
Subject: [PATCH] housekeeping VS auto nonsense to keep style

---
 src/g_game.c     | 2 +-
 src/lua_script.c | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/g_game.c b/src/g_game.c
index 95f96ccf21..ea4cdaf539 100644
--- a/src/g_game.c
+++ b/src/g_game.c
@@ -3161,7 +3161,7 @@ void G_DoReborn(INT32 playernum)
 					nextmapoverride = gamemap;
 					countdown2 = TICRATE;
 					skipstats = 2;
-					forcekeepcutscenes = 0;
+					keepcutscene = 0;
 
 					for (i = 0; i < MAXPLAYERS; i++)
 					{
diff --git a/src/lua_script.c b/src/lua_script.c
index ff2ced1ecf..adf095d593 100644
--- a/src/lua_script.c
+++ b/src/lua_script.c
@@ -274,16 +274,16 @@ int LUA_PushGlobals(lua_State *L, const char *word)
 	} else if (fastcmp(word,"tutorialmode")) {
 		lua_pushboolean(L, tutorialmode);
 		return 1;
-	} else if (fastcmp(word, "keepcutscene")) {
+	} else if (fastcmp(word,"keepcutscene")) {
 		lua_pushboolean(L, keepcutscene);
 		return 1;
-	} else if (fastcmp(word, "nextgametype")) {
+	} else if (fastcmp(word,"nextgametype")) {
 		lua_pushinteger(L, nextgametype);
 		return 1;
-	} else if (fastcmp(word, "skipstats")) {
+	} else if (fastcmp(word,"skipstats")) {
 		lua_pushinteger(L, skipstats);
 		return 1;
-	} else if (fastcmp(word, "nextmapoverride")) {
+	} else if (fastcmp(word,"nextmapoverride")) {
 		lua_pushinteger(L, nextmapoverride);
 		return 1;
 	// end map vars
-- 
GitLab