minor text fixes

This commit is contained in:
jacob1 2017-03-05 10:56:11 -05:00
parent 83657e8773
commit 287d5f9534

View File

@ -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")));