From 267962356454f59866573b288fd6adcdaa9ee6d9 Mon Sep 17 00:00:00 2001 From: Michael Yoo Date: Wed, 18 Sep 2013 22:40:54 +0930 Subject: [PATCH] Fix Typo on Rcon Library --- SourceQuery/Rcon.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SourceQuery/Rcon.class.php b/SourceQuery/Rcon.class.php index b0f954f..260b346 100644 --- a/SourceQuery/Rcon.class.php +++ b/SourceQuery/Rcon.class.php @@ -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;