diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-04-01 11:46:56 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-04-01 11:46:56 -0600 |
commit | 6ef22b50f3d0c2410af5bd2543bedc0b3d692f83 (patch) | |
tree | 9c249e862e45b5ef23519638f82d7ba50f553b68 /src/gui/popupmenu.cpp | |
parent | a0e51612ccfac519890dca4afea38e5478211fec (diff) | |
download | mana-client-6ef22b50f3d0c2410af5bd2543bedc0b3d692f83.tar.gz mana-client-6ef22b50f3d0c2410af5bd2543bedc0b3d692f83.tar.bz2 mana-client-6ef22b50f3d0c2410af5bd2543bedc0b3d692f83.tar.xz mana-client-6ef22b50f3d0c2410af5bd2543bedc0b3d692f83.zip |
Some cleanup
Diffstat (limited to 'src/gui/popupmenu.cpp')
-rw-r--r-- | src/gui/popupmenu.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/gui/popupmenu.cpp b/src/gui/popupmenu.cpp index 41e266a5..8bb6acbb 100644 --- a/src/gui/popupmenu.cpp +++ b/src/gui/popupmenu.cpp @@ -35,11 +35,6 @@ #include "npc.h" #include "player_relations.h" -#ifdef EATHENA_SUPPORT -#include "net/messageout.h" -#include "net/ea/protocol.h" -#endif - #include "resources/itemdb.h" #include "resources/iteminfo.h" @@ -292,8 +287,7 @@ void PopupMenu::handleLink(const std::string &link) being && being->getType() == Being::PLAYER) { - MessageOut outMsg(CMSG_PARTY_INVITE); - outMsg.writeInt32(being->getId()); + player_node->inviteToParty(dynamic_cast<Player*> (being)); } #endif |