diff --git a/stepmania/src/SongOptions.cpp b/stepmania/src/SongOptions.cpp index 2c8b1709ef..69e7a7e0bb 100644 --- a/stepmania/src/SongOptions.cpp +++ b/stepmania/src/SongOptions.cpp @@ -145,9 +145,9 @@ void SongOptions::FromString( const RString &sOptions ) } if( sBit == "norecover" ) m_DrainType = DRAIN_NO_RECOVER; - else if( sBit == "suddendeath" ) m_DrainType = DRAIN_SUDDEN_DEATH; + else if( sBit == "suddendeath" || + sBit == "death" ) m_DrainType = DRAIN_SUDDEN_DEATH; else if( sBit == "power-drop" ) m_DrainType = DRAIN_NO_RECOVER; - else if( sBit == "death" ) m_DrainType = DRAIN_SUDDEN_DEATH; else if( sBit == "normal-drain" ) m_DrainType = DRAIN_NORMAL; else if( sBit == "failarcade" || sBit == "failimmediate" ) m_FailType = FAIL_IMMEDIATE;