summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
authorJônatas Andreta <jonataandretta@hotmail.com>2018-03-14 23:08:06 -0300
committerJônatas Andreta <jonataandretta@hotmail.com>2018-03-14 23:08:59 -0300
commit6518dd8702421c0ff614ae3f771f56950269a77b (patch)
treec03bd6130c693366e9bc97e464d90a655bbedea4 /src/map/clif.c
parentea964c75ac213eab98e22cce938d8bf141071179 (diff)
downloadhercules-6518dd8702421c0ff614ae3f771f56950269a77b.tar.gz
hercules-6518dd8702421c0ff614ae3f771f56950269a77b.tar.bz2
hercules-6518dd8702421c0ff614ae3f771f56950269a77b.tar.xz
hercules-6518dd8702421c0ff614ae3f771f56950269a77b.zip
- Implemented login date for guild members.
Signed-off-by: Megasantos <jonataandretta@hotmail.com>
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index 7c314b075..f998778a2 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -7700,7 +7700,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++;
}