Skip to content
Snippets Groups Projects
Commit 354635f9 authored by RealBadAngel's avatar RealBadAngel Committed by est31
Browse files

Dont make fastface if tile is not seamless

Fixes #3378
Closes #3751
parent ecc8b701
No related branches found
No related tags found
No related merge requests found
......@@ -885,8 +885,9 @@ static void updateFastFaceRow(
&& next_lights[3] == lights[3]
&& next_tile == tile
&& tile.rotation == 0
&& next_light_source == light_source)
{
&& next_light_source == light_source
&& (tile.material_flags & MATERIAL_FLAG_TILEABLE_HORIZONTAL)
&& (tile.material_flags & MATERIAL_FLAG_TILEABLE_VERTICAL)) {
next_is_different = false;
}
else{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment