1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 06:47:24 +08:00

Check channel ID on message highlight using currentDrawableChannel

This commit is contained in:
Salman Ahmed 2022-03-08 01:22:47 +03:00
parent 32d242dd62
commit 22a2ef42c5

View File

@ -338,7 +338,7 @@ namespace osu.Game.Overlays
private void tryHighlightMessage(Message message)
{
if (message.ChannelId != currentChannel.Value.Id)
if (message.ChannelId != currentDrawableChannel.Channel.Id)
return;
currentDrawableChannel.HighlightMessage(message);