Fix flowing liquid spacing; water and lava next to each other will glitch a bit but it isn't as bad as this was

master
Perttu Ahola 2011-11-03 23:04:56 +02:00
parent 1469196d3b
commit f5995337e8
1 changed files with 2 additions and 2 deletions

View File

@ -593,10 +593,10 @@ void mapblock_mesh_generate_special(MeshMakeData *data,
// Do this to not cause glitches when two liquids are
// side-by-side
if(neighbor_is_same_liquid == false){
/*if(neighbor_is_same_liquid == false){
vertices[j].Pos.X *= 0.98;
vertices[j].Pos.Z *= 0.98;
}
}*/
vertices[j].Pos += intToFloat(p + blockpos_nodes, BS);
}