mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-08-30 06:55:11 +00:00
Random: remove multiline formatting in nextSignedInt()
I'm sick to death of formatting tools messing with this...
This commit is contained in:
parent
80b804f7aa
commit
ff3af492f8
@ -94,8 +94,7 @@ class Random{
|
|||||||
$this->x = $this->y;
|
$this->x = $this->y;
|
||||||
$this->y = $this->z;
|
$this->y = $this->z;
|
||||||
$this->z = $this->w;
|
$this->z = $this->w;
|
||||||
$this->w = ($this->w ^ (($this->w >> 19) & 0x7fffffff)
|
$this->w = ($this->w ^ (($this->w >> 19) & 0x7fffffff) ^ ($t ^ (($t >> 8) & 0x7fffffff))) & 0xffffffff;
|
||||||
^ ($t ^ (($t >> 8) & 0x7fffffff))) & 0xffffffff;
|
|
||||||
|
|
||||||
return $this->w;
|
return $this->w;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user