From d6919e94b9cafcbb7cd7573ee5ec94ca0524a0e3 Mon Sep 17 00:00:00 2001 From: teejusb <5017202+teejusb@users.noreply.github.com> Date: Sun, 12 Feb 2023 14:43:15 -0800 Subject: [PATCH] Also set column in the EarlyHitMessage --- src/Player.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Player.cpp b/src/Player.cpp index 68d040935f..a13f436423 100644 --- a/src/Player.cpp +++ b/src/Player.cpp @@ -2530,6 +2530,7 @@ void Player::Step( int col, int row, const RageTimer &tm, bool bHeld, bool bRele Message msg( "EarlyHit" ); msg.SetParam( "Player", m_pPlayerState->m_PlayerNumber ); msg.SetParam( "TapNoteScore", score ); + msg.SetParam( "Column", col ); MESSAGEMAN->Broadcast( msg ); } } else {