summaryrefslogtreecommitdiff
path: root/src/net/eathena/partyhandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena/partyhandler.cpp')
-rw-r--r--src/net/eathena/partyhandler.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/net/eathena/partyhandler.cpp b/src/net/eathena/partyhandler.cpp
index 0cc927ab5..d4404340c 100644
--- a/src/net/eathena/partyhandler.cpp
+++ b/src/net/eathena/partyhandler.cpp
@@ -22,11 +22,16 @@
#include "net/eathena/partyhandler.h"
#include "actormanager.h"
+#include "configuration.h"
#include "notifymanager.h"
#include "party.h"
#include "being/localplayer.h"
+#include "gui/windows/chatwindow.h"
+
+#include "net/ea/gui/partytab.h"
+
#include "net/eathena/messageout.h"
#include "net/eathena/protocol.h"
@@ -248,4 +253,22 @@ void PartyHandler::processPartyMemberInfo(Net::MessageIn &msg)
}
}
+void PartyHandler::processPartySettings(Net::MessageIn &msg)
+{
+ if (!Ea::partyTab)
+ {
+ if (!chatWindow)
+ return;
+
+ Ea::partyTab = new Ea::PartyTab(chatWindow);
+ if (config.getBoolValue("showChatHistory"))
+ Ea::partyTab->loadFromLogFile("#Party");
+ }
+
+ // These seem to indicate the sharing mode for exp and items
+ const int16_t exp = msg.readInt16();
+ const int16_t item = msg.readInt16();
+ processPartySettingsContinue(exp, item);
+}
+
} // namespace EAthena