From 83a895046c9f1a4c992395a99de092bb62e13855 Mon Sep 17 00:00:00 2001 From: Sergey Date: Fri, 30 Jan 2015 18:39:14 +0300 Subject: [PATCH] Wrong symbol --- src/shoghicp/BigBrother/DesktopPlayer.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/shoghicp/BigBrother/DesktopPlayer.php b/src/shoghicp/BigBrother/DesktopPlayer.php index 4e014a2a..9c2b891d 100644 --- a/src/shoghicp/BigBrother/DesktopPlayer.php +++ b/src/shoghicp/BigBrother/DesktopPlayer.php @@ -381,7 +381,7 @@ public function close($message = "", $reason = "generic reason"){ $this->putRawPacket($pk); }else{ $pk = new PlayDisconnectPacket(); - $pk->reason = TextFormat::toJSON($reason === "" ? "You have been disconnected." : $reason);; + $pk->reason = TextFormat::toJSON($reason === "" ? "You have been disconnected." : $reason); $this->putRawPacket($pk); } parent::close($message, $reason); @@ -394,4 +394,4 @@ public function bigBrother_setCompression($threshold){ public function putRawPacket(Packet $packet){ $this->interface->putRawPacket($this, $packet); } -} \ No newline at end of file +}