From ff3af492f8312f043e310760a75d6bc00d0c14bf Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Wed, 20 May 2020 14:34:29 +0100 Subject: [PATCH] Random: remove multiline formatting in nextSignedInt() I'm sick to death of formatting tools messing with this... --- src/pocketmine/utils/Random.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pocketmine/utils/Random.php b/src/pocketmine/utils/Random.php index b5680a69b..561453420 100644 --- a/src/pocketmine/utils/Random.php +++ b/src/pocketmine/utils/Random.php @@ -94,8 +94,7 @@ class Random{ $this->x = $this->y; $this->y = $this->z; $this->z = $this->w; - $this->w = ($this->w ^ (($this->w >> 19) & 0x7fffffff) - ^ ($t ^ (($t >> 8) & 0x7fffffff))) & 0xffffffff; + $this->w = ($this->w ^ (($this->w >> 19) & 0x7fffffff) ^ ($t ^ (($t >> 8) & 0x7fffffff))) & 0xffffffff; return $this->w; }