From 53f2f21f2da95a9dfc491956f7053939f9c79bed Mon Sep 17 00:00:00 2001 From: Shoghi Cervantes Date: Mon, 5 Jan 2015 16:15:57 +0100 Subject: [PATCH] Fixed #2511 --- src/pocketmine/updater/AutoUpdater.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); } }