diff options
| author | click <none@none> | 2010-08-17 10:44:41 +0200 |
|---|---|---|
| committer | click <none@none> | 2010-08-17 10:44:41 +0200 |
| commit | feb71c4b7d5bd161c658793471924fe037bf26a0 (patch) | |
| tree | 0e85edbe65049ea2c5382819bed356dc6084081d /src/server/scripts/Northrend | |
| parent | 05795303f48709440aeb700ce41b7a40a4b068bd (diff) | |
Core/Scripts: Fix some typos in a few scripts - thanks to Kierkegaard
Fixes issue 3443
Comment 3446 test if has been sorted now
--HG--
branch : trunk
Diffstat (limited to 'src/server/scripts/Northrend')
| -rw-r--r-- | src/server/scripts/Northrend/VioletHold/violet_hold.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/scripts/Northrend/VioletHold/violet_hold.cpp b/src/server/scripts/Northrend/VioletHold/violet_hold.cpp index 37a466dd915..a228bef2d09 100644 --- a/src/server/scripts/Northrend/VioletHold/violet_hold.cpp +++ b/src/server/scripts/Northrend/VioletHold/violet_hold.cpp @@ -253,7 +253,7 @@ class npc_sinclari_vh : public CreatureScript public: npc_sinclari_vh() : CreatureScript("npc_sinclari_vh") { } - bool GossipSelect_npc_sinclari(Player* pPlayer, Creature* pCreature, uint32 /*uiSender*/, uint32 uiAction) + bool OnGossipSelect(Player* pPlayer, Creature* pCreature, uint32 /*uiSender*/, uint32 uiAction) { switch(uiAction) { @@ -274,7 +274,7 @@ public: return true; } - bool GossipHello_npc_sinclari(Player* pPlayer, Creature* pCreature) + bool OnGossipHello(Player* pPlayer, Creature* pCreature) { if (InstanceScript* pInstance = pCreature->GetInstanceScript()) { @@ -543,7 +543,7 @@ class npc_teleportation_portal_vh : public CreatureScript public: npc_teleportation_portal_vh() : CreatureScript("npc_teleportation_portal_vh") { } - CreatureAI* GetAI_npc_teleportation_portal(Creature *pCreature) const + CreatureAI* GetAI(Creature *pCreature) const { return new npc_teleportation_portalAI(pCreature); } |
