From 287d5f95348858a0d7680515e6d544eaf28b171f Mon Sep 17 00:00:00 2001 From: jacob1 Date: Sun, 5 Mar 2017 10:56:11 -0500 Subject: [PATCH] minor text fixes --- src/gui/game/GameController.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gui/game/GameController.cpp b/src/gui/game/GameController.cpp index a0f7ee4fb..4db4afc9e 100644 --- a/src/gui/game/GameController.cpp +++ b/src/gui/game/GameController.cpp @@ -1617,7 +1617,11 @@ void GameController::NotifyUpdateAvailable(Client * sender) switch(sender->GetUpdateInfo().Type) { case UpdateInfo::Snapshot: +#if MOD_ID > 0 + gameModel->AddNotification(new UpdateNotification(this, std::string("A new mod update is available - click here to update"))); +#else gameModel->AddNotification(new UpdateNotification(this, std::string("A new snapshot is available - click here to update"))); +#endif break; case UpdateInfo::Stable: gameModel->AddNotification(new UpdateNotification(this, std::string("A new version is available - click here to update")));