mirror of
https://github.com/xPaw/PHP-Source-Query.git
synced 2026-05-18 10:43:35 +02:00
Use challenge straight away if available
This commit is contained in:
@@ -200,7 +200,15 @@
|
||||
throw new SocketException( 'Not connected.', SocketException::NOT_CONNECTED );
|
||||
}
|
||||
|
||||
$this->Socket->Write( self::A2S_INFO, "Source Engine Query\0" );
|
||||
if( $this->Challenge )
|
||||
{
|
||||
$this->Socket->Write( self::A2S_INFO, "Source Engine Query\0" . $this->Challenge );
|
||||
}
|
||||
else
|
||||
{
|
||||
$this->Socket->Write( self::A2S_INFO, "Source Engine Query\0" );
|
||||
}
|
||||
|
||||
$Buffer = $this->Socket->Read( );
|
||||
$Type = $Buffer->GetByte( );
|
||||
$Server = [];
|
||||
|
||||
Reference in New Issue
Block a user