mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Fix facedir > 23 causes segfault in client
See issue #2017 Applied kahrl's gist
This commit is contained in:
parent
7ad17a25f4
commit
d576235409
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ u8 MapNode::getFaceDir(INodeDefManager *nodemgr) const
|
|||
{
|
||||
const ContentFeatures &f = nodemgr->get(*this);
|
||||
if(f.param_type_2 == CPT2_FACEDIR)
|
||||
return getParam2() & 0x1F;
|
||||
return (getParam2() & 0x1F) % 24;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue