Fix unhandled InvalidPositionException

This commit is contained in:
Perttu Ahola 2012-04-10 18:16:03 +03:00
parent 8742b3dab2
commit 1eac6ff8ff
1 changed files with 1 additions and 1 deletions

View File

@ -3047,7 +3047,7 @@ void Server::ProcessData(u8 *data, u32 datasize, u16 peer_id)
if(n.getContent() != CONTENT_IGNORE)
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
RemoteClient *client = getClient(peer_id);