Can anyone help me with this error? Error: Declaration of UHCReload\Countdown:nRun(int $currentTick) must be compatible with pocketmine\scheduler\Task:nRun($currentTick) File: /plugins/UHCReload_v1/src/UHCReload/Countdown Line: 19 Type: E_COMPILE_ERROR THIS CRASH WAS CAUSED BY A PLUGIN BAD PLUGIN : UHCReload v1 Code: [10] use pocketmine\level\Level; [11] use pocketmine\utils\Config; [12] use pocketmine\math\vector3; [13] use UHCReload\Main; [14] use pocketmine\Player; [15] use pocketmine\level\sound\GhastSound; [16] use pocketmine\level\sound\ClickSound; [17] use pocketmine\level\sound\AnvilUseSound; [18] [19] class Countdown extends PluginTask { [20] private $countdown = 0; [21] public function __construct(Main $plugin) { [22] parent::__construct($plugin); [23] } [24] public function onRun(int $currentTick) { [25] if(!isset($this->countdown)) { [26] $this->countdown = $currentTick; [27] } [28] $time = $currentTick - $this->countdown; // in ticks [29] $online = count($this->getOwner()->getServer()->getOnlinePlayers());