From 7f2d97d7efe1a89bf43c85c51a91d46e412dd950 Mon Sep 17 00:00:00 2001 From: ZZYZX Date: Thu, 2 Feb 2017 22:18:28 +0200 Subject: [PATCH] Reverted previous commit --- src/g_level.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/g_level.cpp b/src/g_level.cpp index 6ae23473f3..78613d9a4e 100644 --- a/src/g_level.cpp +++ b/src/g_level.cpp @@ -1357,7 +1357,7 @@ void G_FinishTravel () // [ZZ] fire the reopen hook. // if level is loaded from snapshot, and we don't have savegamerestore, this means we returned from a hub. - if (level.FromSnapshot && !savegamerestore) + if (level.FromSnapshot) { // [Nash] run REOPEN scripts upon map re-entry FBehavior::StaticStartTypedScripts(SCRIPT_Reopen, NULL, false); @@ -1370,7 +1370,7 @@ void G_FinishTravel () FBehavior::StaticStartTypedScripts(SCRIPT_Return, pawns[i], true); } } - else if (!level.FromSnapshot) + else { for (int i = 0; i < pawnsnum; i++) {