diff --git a/src/pocketmine/Server.php b/src/pocketmine/Server.php
index ac6076821..12f8d9eb5 100644
--- a/src/pocketmine/Server.php
+++ b/src/pocketmine/Server.php
@@ -2251,7 +2251,9 @@ class Server{
 	}
 
 	public function sendUsage($type = SendUsageTask::TYPE_STATUS){
-		$this->scheduler->scheduleAsyncTask(new SendUsageTask($this, $type, $this->uniquePlayers));
+		if($this->getProperty("anonymous-statistics.enabled", true)){
+			$this->scheduler->scheduleAsyncTask(new SendUsageTask($this, $type, $this->uniquePlayers));
+		}
 		$this->uniquePlayers = [];
 	}