diff --git a/src/utils/Random.php b/src/utils/Random.php index f20e72961..81598ac24 100644 --- a/src/utils/Random.php +++ b/src/utils/Random.php @@ -92,8 +92,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; }