From deff47ea181a87ff560e7acd4e4318cd6ba9e931 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 7 Dec 2012 07:40:41 +0000 Subject: [PATCH] - fixed: The map loader did not check for the new node formats. SVN r3982 (trunk) --- src/p_setup.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_setup.cpp b/src/p_setup.cpp index 70f63e218a..1edbb181fb 100644 --- a/src/p_setup.cpp +++ b/src/p_setup.cpp @@ -3718,7 +3718,7 @@ void P_SetupLevel (char *lumpname, int position) } map->file->Read (&id, 4); - if (id != 0 && (id == idcheck || id == idcheck2 || id == idcheck3 || id == idcheck4)) + if (id != 0 && (id == idcheck || id == idcheck2 || id == idcheck3 || id == idcheck4 || id == idcheck5 || id == idcheck6)) { try {