Skip to content

Commit

Permalink
add parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
dktapps committed Oct 18, 2016
1 parent 89c3666 commit 0fa1d85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pocketmine/command/CommandReader.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class CommandReader extends Thread{
public function __construct(){
$this->buffer = new \Threaded;
$opts = getopt("", ["disable-readline"]);
$this->readline = extension_loaded("readline") and !isset($opts["disable-readline"]);
$this->readline = (extension_loaded("readline") and !isset($opts["disable-readline"]));
$this->start();
}

Expand Down

0 comments on commit 0fa1d85

Please sign in to comment.