Skip to content

Commit

Permalink
Fix to: addUpdateMeshTaskWithEdge
Browse files Browse the repository at this point in the history
Check in all 6 directions instead of just 3.
  • Loading branch information
RealBadAngel authored and kwolekr committed Apr 24, 2013
1 parent 770305e commit a699bdb
Showing 1 changed file with 8 additions and 14 deletions.
22 changes: 8 additions & 14 deletions src/client.cpp
Expand Up @@ -45,6 +45,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "IMeshCache.h"
#include "util/serialize.h"
#include "config.h"
#include "util/directiontables.h"

#if USE_CURL
#include <curl/curl.h>
Expand Down Expand Up @@ -2723,21 +2724,14 @@ void Client::addUpdateMeshTaskWithEdge(v3s16 blockpos, bool ack_to_server, bool
}
catch(InvalidPositionException &e){}
// Leading edge
try{
v3s16 p = blockpos + v3s16(-1,0,0);
addUpdateMeshTask(p, false, urgent);
}
catch(InvalidPositionException &e){}
try{
v3s16 p = blockpos + v3s16(0,-1,0);
addUpdateMeshTask(p, false, urgent);
}
catch(InvalidPositionException &e){}
try{
v3s16 p = blockpos + v3s16(0,0,-1);
addUpdateMeshTask(p, false, urgent);
for (int i=0;i<6;i++)
{
try{
v3s16 p = blockpos + g_6dirs[i];
addUpdateMeshTask(p, false, urgent);
}
catch(InvalidPositionException &e){}
}
catch(InvalidPositionException &e){}
}

void Client::addUpdateMeshTaskForNode(v3s16 nodepos, bool ack_to_server, bool urgent)
Expand Down

0 comments on commit a699bdb

Please sign in to comment.