diff options
author | megamage <none@none.none> | 2011-10-07 17:56:47 -0700 |
---|---|---|
committer | megamage <none@none.none> | 2011-10-07 17:56:47 -0700 |
commit | 679802ecf40ed3f970aff74f26d8bec5b288d81a (patch) | |
tree | 28ccad306faf876cf8b6f1bfdae6b0a9f2c8733e /src/server/scripts/EasternKingdoms/westfall.cpp | |
parent | 1e44044a8f21c36847bdc544dcf89f83b02b941a (diff) | |
parent | 5b4c7783c2a28e420cb4aaf4f2967083db8f6787 (diff) |
Merge pull request #3400 from Bootz/master
REPO: Code-Style fixes... (Part duece)
Diffstat (limited to 'src/server/scripts/EasternKingdoms/westfall.cpp')
-rw-r--r-- | src/server/scripts/EasternKingdoms/westfall.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/scripts/EasternKingdoms/westfall.cpp b/src/server/scripts/EasternKingdoms/westfall.cpp index 7c0703d158b..e82da353cd0 100644 --- a/src/server/scripts/EasternKingdoms/westfall.cpp +++ b/src/server/scripts/EasternKingdoms/westfall.cpp @@ -54,9 +54,9 @@ class npc_daphne_stilwell : public CreatureScript public: npc_daphne_stilwell() : CreatureScript("npc_daphne_stilwell") { } - bool OnQuestAccept(Player* player, Creature* creature, const Quest* pQuest) + bool OnQuestAccept(Player* player, Creature* creature, const Quest* quest) { - if (pQuest->GetQuestId() == QUEST_TOME_VALOR) + if (quest->GetQuestId() == QUEST_TOME_VALOR) { DoScriptText(SAY_DS_START, creature); |