From 4cee567b23969f27de558d1e5a706d26511b374c Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 10 Aug 2021 18:04:10 +0200 Subject: [PATCH] - fixed: P_RoughMonsterSearch did not pass the fov parameter to its worker functions. --- src/playsim/p_maputl.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/playsim/p_maputl.cpp b/src/playsim/p_maputl.cpp index 6cd8de8505..4f3af3c85b 100644 --- a/src/playsim/p_maputl.cpp +++ b/src/playsim/p_maputl.cpp @@ -1848,6 +1848,7 @@ AActor *P_RoughMonsterSearch(AActor *mo, int distance, bool onlyseekable, bool f { BlockCheckInfo info; info.onlyseekable = onlyseekable; + info.fov = fov; if ((info.frontonly = frontonly)) { info.frontline.x = mo->X();