From 6d87716381f2def6016903d1d7577b462c0333d3 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Thu, 3 Jan 2019 23:23:08 +0100 Subject: [PATCH] - fixed: G_StartTravel must remove all dynamic lights from the actors it is about to carry over to the next level. --- src/g_level.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/g_level.cpp b/src/g_level.cpp index 5239177bff..d942c9fadf 100644 --- a/src/g_level.cpp +++ b/src/g_level.cpp @@ -1299,11 +1299,13 @@ void G_StartTravel () pawn->RemoveFromHash (); pawn->tid = tid; // Restore TID (but no longer linked into the hash chain) pawn->ChangeStatNum (STAT_TRAVELLING); + pawn->DeleteAttachedLights(); for (inv = pawn->Inventory; inv != NULL; inv = inv->Inventory) { inv->ChangeStatNum (STAT_TRAVELLING); inv->UnlinkFromWorld (nullptr); + inv->DeleteAttachedLights(); } } }