Minecart: fixed max stack size to match vanilla (#5051)

This commit is contained in:
ipad54
2022-05-20 18:57:48 +03:00
committed by GitHub
parent 554f96bc24
commit 26df37e6ef

View File

@ -25,5 +25,9 @@ namespace pocketmine\item;
class Minecart extends Item{
public function getMaxStackSize() : int{
return 1;
}
//TODO
}