Skip to content

Commit

Permalink
[Parse] check proc flags before consuming buffs
Browse files Browse the repository at this point in the history
  • Loading branch information
gastank committed Jul 10, 2024
1 parent 9ba53f0 commit 3f08659
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/action/parse_effects.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1637,7 +1637,7 @@ void parse_action_base_t::consume_buff_list()
while ( buff_idx_to_consume )
{
if ( buff_idx_to_consume & 1U )
( *buff_it )->expire();
( *buff_it )->expire( _action );

buff_idx_to_consume >>= 1;
buff_it++;
Expand Down

0 comments on commit 3f08659

Please sign in to comment.