Blue boxes are no longer placed on a track when time trial
mode is used. git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/trunk/supertuxkart@1864 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
parent
442899242e
commit
5365fcadda
@ -39,6 +39,7 @@
|
|||||||
#include "herring.hpp"
|
#include "herring.hpp"
|
||||||
#include "herring_manager.hpp"
|
#include "herring_manager.hpp"
|
||||||
#include "sound_manager.hpp"
|
#include "sound_manager.hpp"
|
||||||
|
#include "race_manager.hpp"
|
||||||
|
|
||||||
#if defined(WIN32) && !defined(__CYGWIN__)
|
#if defined(WIN32) && !defined(__CYGWIN__)
|
||||||
# define snprintf _snprintf
|
# define snprintf _snprintf
|
||||||
@ -1344,6 +1345,10 @@ void Track::herring_command (sgVec3 *xyz, char htype, int bNeedHeight )
|
|||||||
if ( htype=='G' || htype=='g' ) { type = HE_GREEN ;}
|
if ( htype=='G' || htype=='g' ) { type = HE_GREEN ;}
|
||||||
if ( htype=='R' || htype=='r' ) { type = HE_RED ;}
|
if ( htype=='R' || htype=='r' ) { type = HE_RED ;}
|
||||||
if ( htype=='S' || htype=='s' ) { type = HE_SILVER ;}
|
if ( htype=='S' || htype=='s' ) { type = HE_SILVER ;}
|
||||||
|
|
||||||
|
// Time trial does not have any red herrings
|
||||||
|
if(type==HE_RED && race_manager->getRaceMode()==RaceManager::RM_TIME_TRIAL)
|
||||||
|
return;
|
||||||
herring_manager->newHerring(type, xyz);
|
herring_manager->newHerring(type, xyz);
|
||||||
} // herring_command
|
} // herring_command
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user