Skip to content

Commit efd61b6

Browse files
committed
Crabs disallowed to reveal unseen can no longer reveal unseen.
1 parent dade64d commit efd61b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Entities/ACrab.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,7 @@ bool ACrab::IsWithinRange(Vector& point) const {
689689
}
690690

691691
bool ACrab::Look(float FOVSpread, float range) {
692-
if (!g_SceneMan.AnythingUnseen(m_Team))
692+
if (!g_SceneMan.AnythingUnseen(m_Team) || m_CanRevealUnseen == false)
693693
return false;
694694

695695
// Set the length of the look vector

0 commit comments

Comments
 (0)