FishingRod: make class less useless

This commit is contained in:
Dylan K. Taylor 2022-06-05 20:20:16 +01:00
parent b661097c51
commit 6ecfbd1bde
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D

View File

@ -23,7 +23,15 @@ declare(strict_types=1);
namespace pocketmine\item;
class FishingRod extends Item{
class FishingRod extends Durable{
public function getMaxStackSize() : int{
return 1;
}
public function getMaxDurability() : int{
return 384;
}
//TODO
}