Skip to content

Commit

Permalink
fix(Scripts/Darkshore): Rabid Thistle Bear spawning with StandState D…
Browse files Browse the repository at this point in the history
…ead (#17875)
  • Loading branch information
Gultask committed Nov 27, 2023
1 parent ef1b3c2 commit d3bef76
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/server/scripts/Kalimdor/zone_darkshore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,10 @@ class npc_rabid_thistle_bear : public CreatureScript
_playerGUID.Clear();
}

void Reset() override {}
void Reset() override
{
me->SetStandState(UNIT_STAND_STATE_STAND);
}

void SpellHit(Unit* /*caster*/, SpellInfo const* spellInfo) override
{
Expand Down

0 comments on commit d3bef76

Please sign in to comment.