From 73305a7425b8def74011753f68b20d09578e1d74 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Sun, 24 Feb 2019 13:22:11 +0000 Subject: [PATCH] oops, formatting issue --- src/pocketmine/block/Tripwire.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pocketmine/block/Tripwire.php b/src/pocketmine/block/Tripwire.php index aa51787227..3b68142ac4 100644 --- a/src/pocketmine/block/Tripwire.php +++ b/src/pocketmine/block/Tripwire.php @@ -35,7 +35,7 @@ class Tripwire extends Flowable{ protected $disarmed = false; protected function writeStateToMeta() : int{ - return ($this->triggered ? 0x01 : 0) | ($this->suspended ? 0x02: 0) | ($this->connected ? 0x04 : 0) | ($this->disarmed ? 0x08 : 0); + return ($this->triggered ? 0x01 : 0) | ($this->suspended ? 0x02 : 0) | ($this->connected ? 0x04 : 0) | ($this->disarmed ? 0x08 : 0); } public function readStateFromData(int $id, int $stateMeta) : void{