RCONInstance: apply stfu operator

This commit is contained in:
Dylan K. Taylor 2018-06-29 12:16:17 +01:00
parent 57cfe9fd43
commit c43ce5c8fa

View File

@ -80,7 +80,7 @@ class RCONInstance extends Thread{
}
private function readPacket($client, ?int &$requestID, ?int &$packetType, ?string &$payload){
$d = socket_read($client, 4);
$d = @socket_read($client, 4);
if($this->stop){
return false;
}elseif($d === false){