Skip to content

Commit

Permalink
Allow full circle rotation with 2degs step for plantlike drawtype.
Browse files Browse the repository at this point in the history
  • Loading branch information
RealBadAngel committed Jul 24, 2014
1 parent 9dc8901 commit 3bf05f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/content_mapblock.cpp
Expand Up @@ -1119,12 +1119,12 @@ void mapblock_mesh_generate_special(MeshMakeData *data,
if(j == 0)
{
for(u16 i=0; i<4; i++)
vertices[i].Pos.rotateXZBy(46 + n.param2);
vertices[i].Pos.rotateXZBy(46 + n.param2 * 2);
}
else if(j == 1)
{
for(u16 i=0; i<4; i++)
vertices[i].Pos.rotateXZBy(-44 + n.param2);
vertices[i].Pos.rotateXZBy(-44 + n.param2 * 2);
}

for(u16 i=0; i<4; i++)
Expand Down

0 comments on commit 3bf05f0

Please sign in to comment.