Merge branch 'release/3.5'

This commit is contained in:
Dylan K. Taylor
2018-12-12 19:51:41 +00:00
26 changed files with 532 additions and 44 deletions

View File

@ -41,7 +41,7 @@ class NetworkStackLatencyPacket extends DataPacket{
$this->putLLong($this->timestamp);
}
public function handle(SessionHandler $session) : bool{
return $session->handleNetworkStackLatency($this);
public function handle(SessionHandler $handler) : bool{
return $handler->handleNetworkStackLatency($this);
}
}