diff options
author | Haru <haru@dotalux.com> | 2018-04-03 00:16:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-03 00:16:52 +0200 |
commit | 2bd8bcf86931f2dce4df3d2fef4836657543ca50 (patch) | |
tree | b86f7a5807ac6d6037fef60a792e5c4289b05114 /src/map/clif.c | |
parent | b5bd99a39aee9b555fbe90fe1c839c7cfffed9c0 (diff) | |
parent | 6518dd8702421c0ff614ae3f771f56950269a77b (diff) | |
download | hercules-2bd8bcf86931f2dce4df3d2fef4836657543ca50.tar.gz hercules-2bd8bcf86931f2dce4df3d2fef4836657543ca50.tar.bz2 hercules-2bd8bcf86931f2dce4df3d2fef4836657543ca50.tar.xz hercules-2bd8bcf86931f2dce4df3d2fef4836657543ca50.zip |
Merge pull request #1986 from Megasantos/login_date_guild
Implemented login date for guild members.
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 34758246a..afe8aac40 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -7717,7 +7717,7 @@ void clif_guild_memberlist(struct map_session_data *sd) memset(WFIFOP(fd, c * size + 34), 0, 50); //[Ind] - This is displayed in the 'note' column but being you can't edit it it's sent empty. memcpy(WFIFOP(fd, c * size + 84), m->name, NAME_LENGTH); #else - WFIFOL(fd, c * size + 34) = 0; // [4144] this is member last login time. But in hercules it not present. + WFIFOL(fd, c * size + 34) = m->last_login; // [Megasantos] - Shows last date online #endif c++; } |