Skip to content

Commit 9dbf2fa

Browse files
committed
[Havoc] fix First Blood attacks
1 parent b98e033 commit 9dbf2fa

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

engine/class_modules/sc_demon_hunter.cpp

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6942,7 +6942,13 @@ struct blade_dance_base_t
69426942
attack->stats = first_blood_attacks.front()->stats;
69436943
}
69446944

6945-
add_child( first_blood_attacks.front() );
6945+
6946+
if ( first_blood_attacks.front() )
6947+
{
6948+
first_blood_attacks.front()->first_attack = true;
6949+
6950+
add_child( first_blood_attacks.front() );
6951+
}
69466952

69476953
if ( first_blood_attacks.back() )
69486954
{

0 commit comments

Comments
 (0)