From c85ab203b6da8c25bee3ca10b815db8e52b6016e Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Sun, 19 Dec 2010 15:17:54 -0600 Subject: [PATCH] this small chunk of code was missing. --- src/Player.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Player.cpp b/src/Player.cpp index 60a480258b..32d1f51754 100644 --- a/src/Player.cpp +++ b/src/Player.cpp @@ -2488,6 +2488,10 @@ void Player::UpdateTapNotesMissedOlderThan( float fMissIfOlderThanSeconds ) if( !NeedsTapJudging(tn) ) continue; + // warp hackery + if( iter.Row() >= GAMESTATE->m_iWarpBeginRow && iter.Row() <= (GAMESTATE->m_iWarpBeginRow + BeatToNoteRow(GAMESTATE->m_fWarpLength)) ) + continue; + if( tn.type == TapNote::mine ) { tn.result.tns = TNS_AvoidMine;