TOCLIENT_ACTIVE_OBJECT_MESSAGES: channel must be 1 for unreliable message

This commit is contained in:
Loic Blot 2015-04-07 14:28:36 +02:00
parent 3c6e112c28
commit 5132908f4b
1 changed files with 1 additions and 1 deletions

View File

@ -1911,7 +1911,7 @@ void Server::SendActiveObjectMessages(u16 peer_id, const std::string &datas, boo
pkt.putRawString(datas.c_str(), datas.size());
m_clients.send(pkt.getPeerId(),
clientCommandFactoryTable[pkt.getCommand()].channel,
reliable ? clientCommandFactoryTable[pkt.getCommand()].channel : 1,
&pkt, reliable);
}