From ae2b7f952368174aeac90a5076eadd90ddc7fff3 Mon Sep 17 00:00:00 2001 From: Perttu Ahola Date: Fri, 2 Dec 2011 10:45:43 +0200 Subject: [PATCH] Don't hide players in pitch black (like oerkkis) --- src/content_cao.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/content_cao.cpp b/src/content_cao.cpp index 8d1fcc24e..eed5a8337 100644 --- a/src/content_cao.cpp +++ b/src/content_cao.cpp @@ -2246,12 +2246,6 @@ public: if(m_node == NULL) return; - if(light_at_pos <= 2) - { - m_node->setVisible(false); - return; - } - m_node->setVisible(true); u8 li = decode_light(light_at_pos);