@@ -2079,24 +2079,19 @@ void Server::sendRemoveNode(v3s16 p, u16 ignore_id,
2079
2079
float maxd = far_d_nodes*BS;
2080
2080
v3f p_f = intToFloat (p, BS);
2081
2081
2082
- NetworkPacket* pkt = new NetworkPacket (TOCLIENT_REMOVENODE, 2 + 2 + 2 );
2082
+ NetworkPacket* pkt = new NetworkPacket (TOCLIENT_REMOVENODE, 6 );
2083
2083
*pkt << p;
2084
2084
2085
2085
std::list<u16> clients = m_clients.getClientIDs ();
2086
2086
for (std::list<u16>::iterator
2087
2087
i = clients.begin ();
2088
- i != clients.end (); ++i)
2089
- {
2090
- if (far_players)
2091
- {
2088
+ i != clients.end (); ++i) {
2089
+ if (far_players) {
2092
2090
// Get player
2093
- Player *player = m_env->getPlayer (*i);
2094
- if (player)
2095
- {
2091
+ if (Player *player = m_env->getPlayer (*i)) {
2096
2092
// If player is far away, only set modified blocks not sent
2097
2093
v3f player_pos = player->getPosition ();
2098
- if (player_pos.getDistanceFrom (p_f) > maxd)
2099
- {
2094
+ if (player_pos.getDistanceFrom (p_f) > maxd) {
2100
2095
far_players->push_back (*i);
2101
2096
continue ;
2102
2097
}
@@ -2118,7 +2113,7 @@ void Server::sendAddNode(v3s16 p, MapNode n, u16 ignore_id,
2118
2113
v3f p_f = intToFloat (p, BS);
2119
2114
2120
2115
std::list<u16> clients = m_clients.getClientIDs ();
2121
- for (std::list<u16>::iterator
2116
+ for (std::list<u16>::iterator
2122
2117
i = clients.begin ();
2123
2118
i != clients.end (); ++i)
2124
2119
{
@@ -2139,7 +2134,7 @@ void Server::sendAddNode(v3s16 p, MapNode n, u16 ignore_id,
2139
2134
}
2140
2135
}
2141
2136
2142
- NetworkPacket* pkt = new NetworkPacket (TOCLIENT_ADDNODE, 0 );
2137
+ NetworkPacket* pkt = new NetworkPacket (TOCLIENT_ADDNODE, 6 + 2 + 1 + 1 + 1 );
2143
2138
m_clients.Lock ();
2144
2139
RemoteClient* client = m_clients.lockedGetClientNoEx (*i);
2145
2140
if (client != 0 ) {
0 commit comments