diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/net/ea/gui/partytab.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/net/ea/gui/partytab.cpp b/src/net/ea/gui/partytab.cpp index 9b0fc8c5..dab233e1 100644 --- a/src/net/ea/gui/partytab.cpp +++ b/src/net/ea/gui/partytab.cpp @@ -141,6 +141,9 @@ bool PartyTab::handleCommand(const std::string &type, const std::string &args) case PARTY_SHARE_NOT_POSSIBLE: chatLog(_("Item sharing not possible."), BY_SERVER); return true; + case PARTY_SHARE_UNKNOWN: + chatLog(_("Item sharing unknown."), BY_SERVER); + return true; } } @@ -173,6 +176,9 @@ bool PartyTab::handleCommand(const std::string &type, const std::string &args) case PARTY_SHARE_NOT_POSSIBLE: chatLog(_("Experience sharing not possible."), BY_SERVER); return true; + case PARTY_SHARE_UNKNOWN: + chatLog(_("Experience sharing unknown."), BY_SERVER); + return true; } } |