Implemented MEET_OTHER

This commit is contained in:
Perttu Ahola 2011-08-16 12:23:19 +03:00
parent 136657bcc1
commit 29c9d3d5f4
1 changed files with 8 additions and 2 deletions

View File

@ -1732,9 +1732,15 @@ void Server::AsyncRunStep()
}
else if(event->type == MEET_OTHER)
{
dstream<<"Server: MEET_OTHER"<<std::endl;
prof.add("MEET_OTHER", 1);
dstream<<"WARNING: Server: MEET_OTHER not implemented"
<<std::endl;
for(core::map<v3s16, bool>::Iterator
i = event->modified_blocks.getIterator();
i.atEnd()==false; i++)
{
v3s16 p = i.getNode()->getKey();
setBlockNotSent(p);
}
}
else
{