mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Fix unhandled InvalidPositionException
This commit is contained in:
parent
8742b3dab2
commit
1eac6ff8ff
1 changed files with 1 additions and 1 deletions
|
@ -3047,7 +3047,7 @@ void Server::ProcessData(u8 *data, u32 datasize, u16 peer_id)
|
||||||
if(n.getContent() != CONTENT_IGNORE)
|
if(n.getContent() != CONTENT_IGNORE)
|
||||||
scriptapi_node_on_dig(m_lua, p_under, n, playersao);
|
scriptapi_node_on_dig(m_lua, p_under, n, playersao);
|
||||||
|
|
||||||
if (m_env->getMap().getNode(p_under).getContent() != CONTENT_AIR)
|
if (m_env->getMap().getNodeNoEx(p_under).getContent() != CONTENT_AIR)
|
||||||
{
|
{
|
||||||
// Re-send block to revert change on client-side
|
// Re-send block to revert change on client-side
|
||||||
RemoteClient *client = getClient(peer_id);
|
RemoteClient *client = getClient(peer_id);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue