Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
brainiac authored and Knightly1 committed Jan 19, 2024
1 parent fb1fc01 commit 5f17b0c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion MQ2DPSAdv.cpp
Expand Up @@ -1635,7 +1635,7 @@ PLUGIN_API bool OnIncomingChat(const char* Line, DWORD Color)

case USERCOLOR_SPELL_CRIT: // Color: 302 - Direct Damage Crits (Yours)
HandleNonMelee(Line);
#if !IS_EXPANSION_LEVEL(EXPANSION_LEVEL_COTF) // Not contained in ROF2
#if !IS_EXPANSION_LEVEL(EXPANSION_LEVEL_COTF) // DD/Dots Split in LS, only need to handle dots for emu
// This requires checking both handle nonmelee and dot
// Using both of these here can cause an error in debug reporting, but that is expected.
HandleDOT(Line);
Expand Down Expand Up @@ -1722,6 +1722,7 @@ PLUGIN_API bool OnIncomingChat(const char* Line, DWORD Color)

case USERCOLOR_FLURRY: // Color: 356 - Flurry (Yours)
HandleYouHitOther(Line);
break;

case USERCOLOR_DEBUG: // Color: 357
break;
Expand Down

0 comments on commit 5f17b0c

Please sign in to comment.