From 7c212d3d53f9478cfd48ac1e3f930f1f6c3a4472 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Fri, 25 Aug 2017 19:15:54 +0100 Subject: [PATCH] Fix formatting issue in AsyncPool --- src/pocketmine/scheduler/AsyncPool.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pocketmine/scheduler/AsyncPool.php b/src/pocketmine/scheduler/AsyncPool.php index 9a7e6ed65..49e44bcdf 100644 --- a/src/pocketmine/scheduler/AsyncPool.php +++ b/src/pocketmine/scheduler/AsyncPool.php @@ -47,7 +47,7 @@ class AsyncPool{ $this->server = $server; $this->size = $size; - $memoryLimit = (int) max(-1, (int) $this->server->getProperty("memory.async-worker-hard-limit", 1024)); + $memoryLimit = (int) max(-1, (int) $this->server->getProperty("memory.async-worker-hard-limit", 1024)); for($i = 0; $i < $this->size; ++$i){ $this->workerUsage[$i] = 0;