diff options
author | Philipp Sehmisch <crush@themanaworld.org> | 2009-08-16 17:50:23 +0200 |
---|---|---|
committer | Philipp Sehmisch <crush@themanaworld.org> | 2009-08-16 17:50:23 +0200 |
commit | dd0844b6ac01293e7afd0dd85e695b8d77b8e4be (patch) | |
tree | 1b4400379165001d0c6beebde9772cf87b10b6f8 /src | |
parent | e0ba8f7f67ddd08c54f0d453a316b3620d52529d (diff) | |
download | mana-client-dd0844b6ac01293e7afd0dd85e695b8d77b8e4be.tar.gz mana-client-dd0844b6ac01293e7afd0dd85e695b8d77b8e4be.tar.bz2 mana-client-dd0844b6ac01293e7afd0dd85e695b8d77b8e4be.tar.xz mana-client-dd0844b6ac01293e7afd0dd85e695b8d77b8e4be.zip |
fixed a compilation error
Diffstat (limited to 'src')
-rw-r--r-- | src/net/tmwserv/partyhandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/tmwserv/partyhandler.cpp b/src/net/tmwserv/partyhandler.cpp index 2af0e4cb..220d20c0 100644 --- a/src/net/tmwserv/partyhandler.cpp +++ b/src/net/tmwserv/partyhandler.cpp @@ -100,7 +100,7 @@ void PartyHandler::handleMessage(MessageIn &msg) int id = msg.readInt16(); // being id std::string name = msg.readString(); - localChatTab->chatLog(strprintf(_("%s joined the party.", + localChatTab->chatLog(strprintf(_("%s joined the party."), name.c_str())); if (!player_node->isInParty()) |