Improved trees, improved inventory transactions, improved snowball/bow usage

This commit is contained in:
Shoghi Cervantes
2015-03-28 16:59:15 +01:00
parent 47de616ac5
commit 0a85ad0d1f
22 changed files with 363 additions and 360 deletions

View File

@ -110,4 +110,8 @@ class Random{
return $start + ($this->nextInt() % ($end + 1 - $start));
}
public function nextBoundedInt($bound){
return $this->nextInt() % $bound;
}
}