diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-12-30 01:17:22 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-12-30 01:17:22 -0300 |
commit | f5c4ce1ebc127e3a5743657e01a2a848c9bcc6c5 (patch) | |
tree | 50758720c9cef022773719cdd0c9673b9bdfa051 | |
parent | a087ad9e45ac64f2ae6258f729a68bcc224fe305 (diff) | |
download | hercules-f5c4ce1ebc127e3a5743657e01a2a848c9bcc6c5.tar.gz hercules-f5c4ce1ebc127e3a5743657e01a2a848c9bcc6c5.tar.bz2 hercules-f5c4ce1ebc127e3a5743657e01a2a848c9bcc6c5.tar.xz hercules-f5c4ce1ebc127e3a5743657e01a2a848c9bcc6c5.zip |
[TMW2] Temporaly disable packet 0x3831 GUILD LVLUP INFO.
-rw-r--r-- | src/char/int_guild.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/char/int_guild.c b/src/char/int_guild.c index 3e9d50f8d..754e8d3cb 100644 --- a/src/char/int_guild.c +++ b/src/char/int_guild.c @@ -897,7 +897,10 @@ static int inter_guild_calcinfo(struct guild *g) // Check if guild stats has change if (g->max_member != before.max_member || g->guild_lv != before.guild_lv || g->skill_point != before.skill_point) { g->save_flag |= GS_LEVEL; - mapif->guild_info(-1,g); + /* TMW2 FIXME */ + //mapif->guild_info(-1,g); + ShowWarning("Guild %d:%s, level up information received but silently ignored [TMW2]\n", g->guild_id, g->name); + /* TMW2 FIXME */ return 1; } |