summaryrefslogtreecommitdiff
path: root/src/echar
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-08-13 22:53:12 +0300
committerAndrei Karas <akaras@inbox.ru>2015-08-13 22:53:12 +0300
commitf8b3342f690816022d26038389431002e9cf3648 (patch)
tree1553caed418b7fc6496b196eb70894e460bec0e5 /src/echar
parenta38eb2a333972481d99c5fe0c152ba6d59fba839 (diff)
downloadevol-hercules-f8b3342f690816022d26038389431002e9cf3648.tar.gz
evol-hercules-f8b3342f690816022d26038389431002e9cf3648.tar.bz2
evol-hercules-f8b3342f690816022d26038389431002e9cf3648.tar.xz
evol-hercules-f8b3342f690816022d26038389431002e9cf3648.zip
Fix and restore client version in login and char server.
Diffstat (limited to 'src/echar')
-rw-r--r--src/echar/char.c14
-rw-r--r--src/echar/char.h4
-rw-r--r--src/echar/init.c2
3 files changed, 20 insertions, 0 deletions
diff --git a/src/echar/char.c b/src/echar/char.c
index 6a01e8f..409da75 100644
--- a/src/echar/char.c
+++ b/src/echar/char.c
@@ -88,6 +88,20 @@ void echar_parse_char_create_new_char(int *fdPtr, struct char_session_data* sd)
hookStop();
}
+static int tmpVersion = 0;
+
+void echar_parse_char_connect_pre(int *fdPtr, struct char_session_data *sd, uint32 *ipl)
+{
+ tmpVersion = RFIFOW(*fdPtr, 14);
+}
+
+void echar_parse_char_connect_post(int *fdPtr, struct char_session_data *sd, uint32 *ipl)
+{
+ sd = (struct char_session_data*)session[*fdPtr]->session_data;
+ if (sd)
+ sd->version = tmpVersion;
+}
+
void echar_creation_failed(int *fdPtr, int *result)
{
const int fd = *fdPtr;
diff --git a/src/echar/char.h b/src/echar/char.h
index 27994ba..1bf9923 100644
--- a/src/echar/char.h
+++ b/src/echar/char.h
@@ -26,4 +26,8 @@ int echar_mmo_char_send_characters(int retVal, int *fdPtr, struct char_session_d
void send_additional_slots(int fd, struct char_session_data* sd);
+void echar_parse_char_connect_pre(int *fdPtr, struct char_session_data *sd, uint32 *ipl);
+
+void echar_parse_char_connect_post(int *fdPtr, struct char_session_data *sd, uint32 *ipl);
+
#endif // EVOL_CHAR_CHAR
diff --git a/src/echar/init.c b/src/echar/init.c
index 0fa8c62..6fdd887 100644
--- a/src/echar/init.c
+++ b/src/echar/init.c
@@ -65,9 +65,11 @@ HPExport void plugin_init (void)
addHookPre("chr->parse_char_create_new_char", echar_parse_char_create_new_char);
addHookPre("chr->creation_failed", echar_creation_failed);
+ addHookPre("chr->parse_char_connect", echar_parse_char_connect_pre);
addHookPost("chr->mmo_char_send099d", echar_mmo_char_send099d);
addHookPost("chr->mmo_char_send_characters", echar_mmo_char_send_characters);
+ addHookPost("chr->parse_char_connect", echar_parse_char_connect_post);
}
HPExport void server_preinit (void)