As was suggested some time ago, in nitro challenges, replace 'Go' with 'Collect nitro', since not everyone reads the dialog to know what they have to do before launching the challenge ;) and this causes much confusion

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@12898 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
auria 2013-06-20 00:40:03 +00:00
parent 1bbab17913
commit 2f18766b09
2 changed files with 8 additions and 2 deletions

View File

@ -202,7 +202,9 @@ void WorldStatus::update(const float dt)
m_auxiliary_timer += dt;
// In artist debug mode, when without opponents, skip the ready/set/go counter faster
if (UserConfigParams::m_artist_debug_mode && race_manager->getNumberOfKarts() == 1)
if (UserConfigParams::m_artist_debug_mode &&
race_manager->getNumberOfKarts() == 1 &&
race_manager->getTrackName() != "tutorial")
m_auxiliary_timer += dt*6;
break;
case MUSIC_PHASE:

View File

@ -712,7 +712,11 @@ void RaceGUIBase::drawGlobalReadySetGo()
UserConfigParams::m_height>>1);
//gui::IGUIFont* font = irr_driver->getRaceFont();
gui::IGUIFont* font = GUIEngine::getTitleFont();
font->draw(m_string_go.c_str(), pos, color, true, true);
if (race_manager->getCoinTarget() > 0)
font->draw(_("Collect nitro!"), pos, color, true, true);
else
font->draw(m_string_go.c_str(), pos, color, true, true);
}
break;
default: