mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-11 17:51:04 +00:00
Implemented MEET_OTHER
This commit is contained in:
parent
136657bcc1
commit
29c9d3d5f4
1 changed files with 8 additions and 2 deletions
|
@ -1732,9 +1732,15 @@ void Server::AsyncRunStep()
|
||||||
}
|
}
|
||||||
else if(event->type == MEET_OTHER)
|
else if(event->type == MEET_OTHER)
|
||||||
{
|
{
|
||||||
|
dstream<<"Server: MEET_OTHER"<<std::endl;
|
||||||
prof.add("MEET_OTHER", 1);
|
prof.add("MEET_OTHER", 1);
|
||||||
dstream<<"WARNING: Server: MEET_OTHER not implemented"
|
for(core::map<v3s16, bool>::Iterator
|
||||||
<<std::endl;
|
i = event->modified_blocks.getIterator();
|
||||||
|
i.atEnd()==false; i++)
|
||||||
|
{
|
||||||
|
v3s16 p = i.getNode()->getKey();
|
||||||
|
setBlockNotSent(p);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue