Skip to content
Snippets Groups Projects
Commit 7cdd988f authored by Ciaran Gultnieks's avatar Ciaran Gultnieks
Browse files

Better synchronisation of build/mine attempts when the player isn't allowed to

parent 50c48219
No related branches found
No related tags found
No related merge requests found
......@@ -2174,8 +2174,6 @@ void Server::ProcessData(u8 *data, u32 datasize, u16 peer_id)
{
if(datasize < 17)
return;
if((player->privs & PRIV_BUILD) == 0)
return;
/*
length: 17
[0] u16 command
......@@ -2281,6 +2279,10 @@ void Server::ProcessData(u8 *data, u32 datasize, u16 peer_id)
cannot_remove_node = true;
}
// Make sure the player is allowed to do it
if((player->privs & PRIV_BUILD) == 0)
cannot_remove_node = true;
/*
If node can't be removed, set block to be re-sent to
client and quit.
......@@ -2427,7 +2429,8 @@ void Server::ProcessData(u8 *data, u32 datasize, u16 peer_id)
try{
// Don't add a node if this is not a free space
MapNode n2 = m_env.getMap().getNode(p_over);
if(content_buildable_to(n2.d) == false)
if(content_buildable_to(n2.d) == false
|| (player->privs & PRIV_BUILD) ==0)
{
// Client probably has wrong data.
// Set block not sent, so that client will get
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment