diff --git a/src/pocketmine/updater/AutoUpdater.php b/src/pocketmine/updater/AutoUpdater.php index dbb85b905..1b3e9f9f5 100644 --- a/src/pocketmine/updater/AutoUpdater.php +++ b/src/pocketmine/updater/AutoUpdater.php @@ -49,7 +49,7 @@ class AutoUpdater{ $version = new VersionString(); if(!$version->isDev() and $this->getChannel() !== "stable"){ $this->showChannelSuggestionStable(); - }elseif($this->getChannel() === "stable"){ + }elseif($version->isDev() and $this->getChannel() === "stable"){ $this->showChannelSuggestionBeta(); } }