diff --git a/src/MyPlot/MyPlot.php b/src/MyPlot/MyPlot.php index d495e50c..394c7754 100644 --- a/src/MyPlot/MyPlot.php +++ b/src/MyPlot/MyPlot.php @@ -870,20 +870,6 @@ public function sellPlot(Plot $plot, float $price) : bool { return $this->savePlot($plot); } - /** - * Checks if a player can buy a plot - * - * @api - * - * @param Plot $plot - * @param Player $player - * - * @return bool - */ - public function canBuyPlot(Plot $plot, Player $player) : bool { - return $this->getEconomyProvider() !== null and $plot->isForSale() and $this->getEconomyProvider()->getMoney($player) >= $plot->price; - } - /** * Buys a plot *