diff --git a/src/pocketmine/utils/Config.php b/src/pocketmine/utils/Config.php index dbc292c33..b06f0711d 100644 --- a/src/pocketmine/utils/Config.php +++ b/src/pocketmine/utils/Config.php @@ -130,14 +130,14 @@ class Config{ $this->parseProperties($content); break; case Config::JSON: - $this->config = @json_decode($content, true); + $this->config = json_decode($content, true); break; case Config::YAML: $content = self::fixYAMLIndexes($content); $this->config = yaml_parse($content); break; case Config::SERIALIZED: - $this->config = @unserialize($content); + $this->config = unserialize($content); break; case Config::ENUM: $this->parseList($content);