From 13994055d90af6a75b8d546e9ae07da6fd20465f Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Wed, 9 Oct 2019 11:26:20 +0100 Subject: [PATCH] SetupWizard: disable spawn protection by default we can't change anything else wrt. this on a patch version, disabling it in the main core by default involves possible behavioural breaks --- src/pocketmine/wizard/SetupWizard.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pocketmine/wizard/SetupWizard.php b/src/pocketmine/wizard/SetupWizard.php index 21aa3a93b..ba7991afc 100644 --- a/src/pocketmine/wizard/SetupWizard.php +++ b/src/pocketmine/wizard/SetupWizard.php @@ -162,7 +162,7 @@ LICENSE; $this->message($this->lang->get("spawn_protection_info")); - if(strtolower($this->getInput($this->lang->get("spawn_protection"), "y", "Y/n")) === "n"){ + if(strtolower($this->getInput($this->lang->get("spawn_protection"), "n", "y/N")) === "n"){ $config->set("spawn-protection", -1); }else{ $config->set("spawn-protection", 16);