From dd668b32142e1239cf95fe78e3b8a67db1e3726e Mon Sep 17 00:00:00 2001 From: jyelon Date: Tue, 9 Sep 2025 17:14:14 -0400 Subject: [PATCH] Fix a bug in GameMode EndPlay --- Source/Integration/LuprexGameModeBase.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Integration/LuprexGameModeBase.cpp b/Source/Integration/LuprexGameModeBase.cpp index 30edf526..1c431d3a 100644 --- a/Source/Integration/LuprexGameModeBase.cpp +++ b/Source/Integration/LuprexGameModeBase.cpp @@ -357,6 +357,7 @@ void ALuprexGameModeBase::InitializeGlobalState() void ALuprexGameModeBase::EndPlay(const EEndPlayReason::Type EndPlayReason) { ResetToInitialState(); + Super::EndPlay(EndPlayReason); } int64 ALuprexGameModeBase::GetPlayerId() {