mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
RotateAlongYAxis: For facedir case, return if param2 >= 4
This commit is contained in:
parent
aef1b41b02
commit
9e1e4b6284
1 changed files with 3 additions and 0 deletions
|
@ -163,6 +163,9 @@ void MapNode::rotateAlongYAxis(INodeDefManager *nodemgr, Rotation rot) {
|
|||
ContentParamType2 cpt2 = nodemgr->get(*this).param_type_2;
|
||||
|
||||
if (cpt2 == CPT2_FACEDIR) {
|
||||
if (param2 >= 4)
|
||||
return;
|
||||
|
||||
u8 newrot = param2 & 3;
|
||||
param2 &= ~3;
|
||||
param2 |= (newrot + rot) & 3;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue