From 2b16971137ed0d29055708181e83415c0e94f91f Mon Sep 17 00:00:00 2001 From: Zachary McAlpin Date: Thu, 12 Mar 2020 20:15:21 -0500 Subject: [PATCH] Call LUAh_GameQuit in Command_ExitGame_f --- src/d_netcmd.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/d_netcmd.c b/src/d_netcmd.c index c6ea974ae..eca80907a 100644 --- a/src/d_netcmd.c +++ b/src/d_netcmd.c @@ -4235,6 +4235,10 @@ void Command_ExitGame_f(void) { INT32 i; +#ifdef HAVE_BLUA + LUAh_GameQuit(); +#endif + D_QuitNetGame(); CL_Reset(); CV_ClearChangedFlags();