summaryrefslogtreecommitdiff
path: root/src/clientmap.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/clientmap.cpp')
-rw-r--r--src/clientmap.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/clientmap.cpp b/src/clientmap.cpp
index 4ceb7bc90..b9516fcbe 100644
--- a/src/clientmap.cpp
+++ b/src/clientmap.cpp
@@ -161,9 +161,9 @@ static bool isOccluded(Map *map, v3s16 p0, v3s16 p1, float step, float stepfac,
else
is_transparent = (f.solidness != 2);
if(!is_transparent){
- count++;
- if(count >= needed_count)
+ if(count == needed_count)
return true;
+ count++;
}
step *= stepfac;
}