aboutsummaryrefslogtreecommitdiff
path: root/src/connections.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/connections.cc')
-rw-r--r--src/connections.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/connections.cc b/src/connections.cc
index fe26fea..7cf70c7 100644
--- a/src/connections.cc
+++ b/src/connections.cc
@@ -307,8 +307,7 @@ bool TConnection::IsVisible(int x, int y, int z){
int PlayerX, PlayerY, PlayerZ;
this->GetPosition(&PlayerX, &PlayerY, &PlayerZ);
- // NOTE(fusion): The player can see only floors above ground when above
- // ground, or two floors up and down when underground.
+ // TODO(fusion): Have a standalone version of `TCreature::CanSeeFloor`?
if(PlayerZ <= 7){
if(z > 7){
return false;