diff options
| author | Shauren <shauren.trinity@gmail.com> | 2011-05-26 23:31:46 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2011-05-26 23:31:46 +0200 |
| commit | a644206f88601119c74aeb49030a22f9ce39d421 (patch) | |
| tree | 8e9bd133414f63cf072393053d7042f1e2adf441 /src/server/scripts/Kalimdor | |
| parent | 7abb302d8f9caf7adb109d7602896c185dea9095 (diff) | |
Scripts: Removed SEND_VENDORLIST and SEND_TRAINERLIST defines
Diffstat (limited to 'src/server/scripts/Kalimdor')
| -rw-r--r-- | src/server/scripts/Kalimdor/dustwallow_marsh.cpp | 2 | ||||
| -rw-r--r-- | src/server/scripts/Kalimdor/feralas.cpp | 2 | ||||
| -rw-r--r-- | src/server/scripts/Kalimdor/tanaris.cpp | 2 | ||||
| -rw-r--r-- | src/server/scripts/Kalimdor/winterspring.cpp | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/server/scripts/Kalimdor/dustwallow_marsh.cpp b/src/server/scripts/Kalimdor/dustwallow_marsh.cpp index 1047eba6bc0..ac29aec35e4 100644 --- a/src/server/scripts/Kalimdor/dustwallow_marsh.cpp +++ b/src/server/scripts/Kalimdor/dustwallow_marsh.cpp @@ -381,7 +381,7 @@ public: { pPlayer->PlayerTalkClass->ClearMenus(); if (uiAction == GOSSIP_ACTION_TRADE) - pPlayer->SEND_VENDORLIST(pCreature->GetGUID()); + pPlayer->GetSession()->SendListInventory(pCreature->GetGUID()); return true; } diff --git a/src/server/scripts/Kalimdor/feralas.cpp b/src/server/scripts/Kalimdor/feralas.cpp index e7140cc1325..1da5b2e57c5 100644 --- a/src/server/scripts/Kalimdor/feralas.cpp +++ b/src/server/scripts/Kalimdor/feralas.cpp @@ -46,7 +46,7 @@ public: pPlayer->SEND_GOSSIP_MENU(2434, pCreature->GetGUID()); } if (uiAction == GOSSIP_ACTION_TRADE) - pPlayer->SEND_VENDORLIST(pCreature->GetGUID()); + pPlayer->GetSession()->SendListInventory(pCreature->GetGUID()); return true; } diff --git a/src/server/scripts/Kalimdor/tanaris.cpp b/src/server/scripts/Kalimdor/tanaris.cpp index c3937ddc95e..8671b51c9e8 100644 --- a/src/server/scripts/Kalimdor/tanaris.cpp +++ b/src/server/scripts/Kalimdor/tanaris.cpp @@ -248,7 +248,7 @@ public: { pPlayer->PlayerTalkClass->ClearMenus(); if (uiAction == GOSSIP_ACTION_TRADE) - pPlayer->SEND_VENDORLIST(pCreature->GetGUID()); + pPlayer->GetSession()->SendListInventory(pCreature->GetGUID()); return true; } diff --git a/src/server/scripts/Kalimdor/winterspring.cpp b/src/server/scripts/Kalimdor/winterspring.cpp index fb245d5c97d..7650c20a0a2 100644 --- a/src/server/scripts/Kalimdor/winterspring.cpp +++ b/src/server/scripts/Kalimdor/winterspring.cpp @@ -109,7 +109,7 @@ public: { pPlayer->PlayerTalkClass->ClearMenus(); if (uiAction == GOSSIP_ACTION_TRADE) - pPlayer->SEND_VENDORLIST(pCreature->GetGUID()); + pPlayer->GetSession()->SendListInventory(pCreature->GetGUID()); return true; } |
