Skip to content
This repository has been archived by the owner on Feb 9, 2021. It is now read-only.

Commit

Permalink
Merge pull request #3568 from MagicDroidX/patch-3
Browse files Browse the repository at this point in the history
Fixed recursive call
  • Loading branch information
msjyoo committed Oct 7, 2015
2 parents cbef0e2 + 4e59d85 commit 04fc062
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pocketmine/inventory/BaseInventory.php
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ public function getHolder(){
}

public function setMaxStackSize($size){
$this->setMaxStackSize($size);
$this->maxStackSize = (int) $size;
}

public function open(Player $who){
Expand Down

0 comments on commit 04fc062

Please sign in to comment.