From 3bf05f020c4ed7b89ab4eb36dde9dc96c4f6811a Mon Sep 17 00:00:00 2001 From: RealBadAngel Date: Thu, 24 Jul 2014 20:02:20 +0200 Subject: [PATCH] Allow full circle rotation with 2degs step for plantlike drawtype. --- src/content_mapblock.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/content_mapblock.cpp b/src/content_mapblock.cpp index f12dd11d5..7708d0e76 100644 --- a/src/content_mapblock.cpp +++ b/src/content_mapblock.cpp @@ -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++)