diff options
author | Spp <spp@jorge.gr> | 2012-03-07 14:08:30 +0100 |
---|---|---|
committer | Spp <spp@jorge.gr> | 2012-03-07 14:09:18 +0100 |
commit | f495e0efe4aff18d702fdc74ecc4f43e249aea9a (patch) | |
tree | fd53845273354fb46fb33d8228479d72352aa5a5 /src/server/scripts/Outland/nagrand.cpp | |
parent | e5d23103f37c40d2e946fa0e2db66d2f527ad9af (diff) |
Warning fixes and some random cleanup here and there
Diffstat (limited to 'src/server/scripts/Outland/nagrand.cpp')
-rw-r--r-- | src/server/scripts/Outland/nagrand.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/scripts/Outland/nagrand.cpp b/src/server/scripts/Outland/nagrand.cpp index f1aaf82cb67..5d1a77953a7 100644 --- a/src/server/scripts/Outland/nagrand.cpp +++ b/src/server/scripts/Outland/nagrand.cpp @@ -57,10 +57,10 @@ class npc_greatmother_geyah : public CreatureScript public: npc_greatmother_geyah() : CreatureScript("npc_greatmother_geyah") { } - bool OnGossipSelect(Player* player, Creature* creature, uint32 /*uiSender*/, uint32 uiAction) + bool OnGossipSelect(Player* player, Creature* creature, uint32 /*sender*/, uint32 action) { player->PlayerTalkClass->ClearMenus(); - switch (uiAction) + switch (action) { case GOSSIP_ACTION_INFO_DEF + 1: player->ADD_GOSSIP_ITEM(GOSSIP_ICON_CHAT, GOSSIP_SGG1, GOSSIP_SENDER_MAIN, GOSSIP_ACTION_INFO_DEF + 2); |