Merge pull request #3568 from MagicDroidX/patch-3

Fixed recursive call
This commit is contained in:
Michael Yoo 2015-10-08 07:40:58 +10:30
commit 04fc062b2a

View File

@ -378,7 +378,7 @@ abstract class BaseInventory implements Inventory{
}
public function setMaxStackSize($size){
$this->setMaxStackSize($size);
$this->maxStackSize = (int) $size;
}
public function open(Player $who){