mirror of
https://github.com/minetest/minetest.git
synced 2024-11-09 01:03:46 +01:00
Fix occlusion
This commit is contained in:
parent
aefe80769b
commit
056e8f7839
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user