1
0
mirror of https://github.com/xPaw/PHP-Source-Query.git synced 2026-05-18 13:43:33 +02:00

Fix Typo on Rcon Library

This commit is contained in:
Michael Yoo
2013-09-18 22:40:54 +09:30
parent 464dedc78b
commit 2679623564
+1 -1
View File
@@ -77,7 +77,7 @@
case SourceQuery :: SOURCE:
{
// 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
$Command = Pack( 'V', StrLen( $Command ) ) . $Command;