Skip to content

Commit

Permalink
Merge pull request #32 from seria2/patch-1
Browse files Browse the repository at this point in the history
Wrong symbol
  • Loading branch information
shoghicp committed Jan 31, 2015
2 parents a150aca + 83a8950 commit b9bea96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/shoghicp/BigBrother/DesktopPlayer.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -394,4 +394,4 @@ public function bigBrother_setCompression($threshold){
public function putRawPacket(Packet $packet){
$this->interface->putRawPacket($this, $packet);
}
}
}

0 comments on commit b9bea96

Please sign in to comment.