forked from Mirrorlandia_minetest/minetest
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
|
else
|
||||||
is_transparent = (f.solidness != 2);
|
is_transparent = (f.solidness != 2);
|
||||||
if(!is_transparent){
|
if(!is_transparent){
|
||||||
count++;
|
if(count == needed_count)
|
||||||
if(count >= needed_count)
|
|
||||||
return true;
|
return true;
|
||||||
|
count++;
|
||||||
}
|
}
|
||||||
step *= stepfac;
|
step *= stepfac;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user