diff --git a/stepmania/src/GhostArrowRow.cpp b/stepmania/src/GhostArrowRow.cpp index 6b8438e88d..cf58f96e1a 100644 --- a/stepmania/src/GhostArrowRow.cpp +++ b/stepmania/src/GhostArrowRow.cpp @@ -82,6 +82,12 @@ void GhostArrowRow::DidTapNote( int iCol, TapNoteScore tns, bool bBright ) { ASSERT( iCol >= 0 && iCol < (int) m_Ghost.size() ); + Message msg("ColumnJudgment"); + msg.SetParam( "TapNoteScore", tns ); + if( bBright ) + msg.SetParam( "Bright", true ); + m_Ghost[iCol]->HandleMessage( msg ); + m_Ghost[iCol]->PlayCommand( "Judgment" ); if( bBright ) m_Ghost[iCol]->PlayCommand( "Bright" ); @@ -94,6 +100,12 @@ void GhostArrowRow::DidTapNote( int iCol, TapNoteScore tns, bool bBright ) void GhostArrowRow::DidHoldNote( int iCol, HoldNoteScore hns, bool bBright ) { ASSERT( iCol >= 0 && iCol < (int) m_Ghost.size() ); + Message msg("ColumnJudgment"); + msg.SetParam( "HoldNoteScore", hns ); + if( bBright ) + msg.SetParam( "Bright", true ); + m_Ghost[iCol]->HandleMessage( msg ); + m_Ghost[iCol]->PlayCommand( "Judgment" ); if( bBright ) m_Ghost[iCol]->PlayCommand( "Bright" );