| 2160 | float NetServer::GetLastMsgAgeReliable(int player) |
| 2161 | { |
| 2162 | float result = 1.0; |
| 2163 | |
| 2164 | enterUsr(); |
| 2165 | RefD<NetChannel> channel; |
| 2166 | if (users.get(player, channel)) |
| 2167 | { |
| 2168 | unsigned64 last = channel->getLastMessageArrival(); |
| 2169 | unsigned64 now = getSystemTime(); |
| 2170 | if (now < last) |
| 2171 | { |
| 2172 | LOG_DEBUG(Network, |