diff options
author | Meji <alvaro.megias@outlook.com> | 2024-05-05 12:25:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-05 12:25:07 +0200 |
commit | 83c403c870070151e58aa96b1faa203f4d1de929 (patch) | |
tree | d16cc143d24941313fd9b0516a6441a8b8febf70 | |
parent | 4380924f11ac7b5821795f1cb2c8e1306a473da7 (diff) |
Core/ChildrensWeek: Add target for text locales with variables (#29956)
-rw-r--r-- | src/server/scripts/Events/childrens_week.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/scripts/Events/childrens_week.cpp b/src/server/scripts/Events/childrens_week.cpp index 5c586ab55e8..1f06eb6bb82 100644 --- a/src/server/scripts/Events/childrens_week.cpp +++ b/src/server/scripts/Events/childrens_week.cpp @@ -517,7 +517,7 @@ class npc_high_oracle_soo_roo : public CreatureScript break; case 2: orphan->SetFacingToObject(me); - Talk(TEXT_SOO_ROO_1); + Talk(TEXT_SOO_ROO_1, player); timer = 6000; break; case 3: @@ -865,7 +865,7 @@ class npc_alexstraza_the_lifebinder : public CreatureScript timer = 5000; break; case 4: - Talk(TEXT_ALEXSTRASZA_2); + Talk(TEXT_ALEXSTRASZA_2, orphan); me->SetStandState(UNIT_STAND_STATE_KNEEL); me->SetFacingToObject(orphan); timer = 5000; @@ -900,7 +900,7 @@ class npc_alexstraza_the_lifebinder : public CreatureScript break; case 10: orphan->SetFacingToObject(me); - Talk(TEXT_ALEXSTRASZA_2); + Talk(TEXT_ALEXSTRASZA_2, orphan); timer = 5000; break; case 11: |