diff --git a/src/pocketmine/plugin/PluginBase.php b/src/pocketmine/plugin/PluginBase.php index a87120998..651c0ca30 100644 --- a/src/pocketmine/plugin/PluginBase.php +++ b/src/pocketmine/plugin/PluginBase.php @@ -258,10 +258,6 @@ abstract class PluginBase implements Plugin{ public function reloadConfig(){ $this->saveDefaultConfig(); $this->config = new Config($this->configFile); - if(($configStream = $this->getResource("config.yml")) !== null){ - $this->config->setDefaults(yaml_parse(Config::fixYAMLIndexes(stream_get_contents($configStream)))); - fclose($configStream); - } } /**