diff options
author | Chuck Miller <shadowmil@gmail.com> | 2009-09-23 21:32:13 -0400 |
---|---|---|
committer | Chuck Miller <shadowmil@gmail.com> | 2009-09-23 21:35:08 -0400 |
commit | 658c737c051fc28fa1d33e6ac0d07a36e9d5f8e0 (patch) | |
tree | f5fc011502e132986c3991721e1514f30e09eb7c /src/gui/popupmenu.cpp | |
parent | bb078a181535bea23d8ca4f04ea66c98fc6e3403 (diff) | |
download | mana-658c737c051fc28fa1d33e6ac0d07a36e9d5f8e0.tar.gz mana-658c737c051fc28fa1d33e6ac0d07a36e9d5f8e0.tar.bz2 mana-658c737c051fc28fa1d33e6ac0d07a36e9d5f8e0.tar.xz mana-658c737c051fc28fa1d33e6ac0d07a36e9d5f8e0.zip |
Fixes party invite
Diffstat (limited to 'src/gui/popupmenu.cpp')
-rw-r--r-- | src/gui/popupmenu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/popupmenu.cpp b/src/gui/popupmenu.cpp index 31a8ddcb..fb987363 100644 --- a/src/gui/popupmenu.cpp +++ b/src/gui/popupmenu.cpp @@ -134,7 +134,7 @@ void PopupMenu::showPopup(int x, int y, Being *being) name.c_str()).c_str())); #endif if (player_node->isInParty()) - mBrowserBox->addRow(strprintf("@@pickup|%s@@", + mBrowserBox->addRow(strprintf("@@party|%s@@", strprintf(_("Invite %s to join your party"), name.c_str()).c_str())); |