Skip to content
This repository has been archived by the owner on Feb 29, 2024. It is now read-only.

Commit

Permalink
Scripts: Give players huo's blessing on quest accept.
Browse files Browse the repository at this point in the history
  • Loading branch information
AriDEV3 committed Nov 24, 2023
1 parent 2958a97 commit 4e2b89a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions sql/updates/world/2023_11_24_world_02.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
UPDATE `quest_template` SET `PrevQuestId`=29421 WHERE `Id`=29422;

UPDATE `creature_template` SET `ScriptName`='npc_huo' WHERE `entry`=54787;
1 change: 1 addition & 0 deletions src/server/scripts/Pandaria/zone_wandering_island.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@ class npc_huo : public CreatureScript

bool OnQuestAccept(Player* player, Creature* /*creature*/, Quest const* /*quest*/ ) OVERRIDE
{
player->CastSpell(player, 102630); // blessing of huo
player->CastSpell(player, 128700);
return true;
}
Expand Down

0 comments on commit 4e2b89a

Please sign in to comment.