From 23e4ca64e446f77f702d054b70fa06410d0ddcdc Mon Sep 17 00:00:00 2001 From: dktapps Date: Tue, 6 Sep 2016 09:10:08 +0100 Subject: [PATCH] Remove dupe load() causing reload debug spam This call is completely redundant. --- src/pocketmine/utils/Config.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pocketmine/utils/Config.php b/src/pocketmine/utils/Config.php index 25712b72e..7a430a76b 100644 --- a/src/pocketmine/utils/Config.php +++ b/src/pocketmine/utils/Config.php @@ -89,7 +89,6 @@ class Config{ $this->config = []; $this->nestedCache = []; $this->correct = false; - $this->load($this->file); $this->load($this->file, $this->type); }