From 73ae985a4b8018839b9f1864b09479211b352181 Mon Sep 17 00:00:00 2001 From: the1robert <11932981+leeadama@users.noreply.github.com> Date: Sat, 19 Dec 2020 08:47:55 -0600 Subject: [PATCH] Enable LOS checks for Hostile Mobs. --- src/Mobs/Monster.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mobs/Monster.cpp b/src/Mobs/Monster.cpp index 9a51f79d2..b1975368d 100644 --- a/src/Mobs/Monster.cpp +++ b/src/Mobs/Monster.cpp @@ -768,7 +768,7 @@ void cMonster::CheckEventSeePlayer(cChunk & a_Chunk) { EventSeePlayer(&a_Player, a_Chunk); return true; - }, false); + }, true); }