From 6e1d5cf10b2ffaa7ab07820a0775fc6a6cb7df24 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Fri, 24 Jun 2011 10:55:39 -0400 Subject: [PATCH] DQ if attacks are there, but disabled. --- src/PlayerOptions.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/PlayerOptions.cpp b/src/PlayerOptions.cpp index 4976a5134d..97d4ccd7ec 100644 --- a/src/PlayerOptions.cpp +++ b/src/PlayerOptions.cpp @@ -712,6 +712,10 @@ bool PlayerOptions::IsEasierForSongAndSteps( Song* pSong, Steps* pSteps, PlayerN // This makes songs with sparse notes easier. if( m_bTransforms[TRANSFORM_ECHO] ) return true; + // Removing attacks is easier in general. + if (!m_fSongAttack && !m_fRandAttack && pSong->HasAttacks()) + return true; + if( m_fCover ) return true; if( m_fPlayerAutoPlay ) return true; return false;