1
0
mirror of https://github.com/xPaw/PHP-Source-Query.git synced 2026-06-08 06:25:59 +02:00

Merge pull request #13 from sekjun9878/patch-1

Fix Typo on Rcon Library
This commit is contained in:
Pavel
2013-09-24 13:44:06 -07:00
+1 -1
View File
@@ -77,7 +77,7 @@
case SourceQuery :: SOURCE: case SourceQuery :: SOURCE:
{ {
// Pack the packet together // Pack the packet together
$Command = Pack( 'VV', ++$this->RequestId, $Header ) . $String . "\x00\x00\x00"; $Command = Pack( 'VV', ++$this->RconRequestId, $Header ) . $String . "\x00\x00\x00";
// Prepend packet length // Prepend packet length
$Command = Pack( 'V', StrLen( $Command ) ) . $Command; $Command = Pack( 'V', StrLen( $Command ) ) . $Command;