diff options
author | Inkfish <Inkfish@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-02-19 03:17:00 +0000 |
---|---|---|
committer | Inkfish <Inkfish@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-02-19 03:17:00 +0000 |
commit | 267a456c643bca4185b56eb7cdd39bb2449bed90 (patch) | |
tree | 9bbd56e2b15df080a1c8c44bf043e8ebea12719b /src/map/clif.c | |
parent | 72f1f6481da3a5cfeeec8c3b359e5baee9a63f46 (diff) | |
download | hercules-267a456c643bca4185b56eb7cdd39bb2449bed90.tar.gz hercules-267a456c643bca4185b56eb7cdd39bb2449bed90.tar.bz2 hercules-267a456c643bca4185b56eb7cdd39bb2449bed90.tar.xz hercules-267a456c643bca4185b56eb7cdd39bb2449bed90.zip |
* Fixed NPC_INVINCIBLE can be dispelled. (bugreport:4046)
* Fixed a compliation warning.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14247 54d463be-8e91-2dee-dedb-b68131a5f0ec
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 db6d4a291..1eed2fd91 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -6616,7 +6616,7 @@ int clif_guild_memberlist(struct map_session_data *sd) WFIFOW(fd,c*104+16)=m->gender; WFIFOW(fd,c*104+18)=m->class_; WFIFOW(fd,c*104+20)=m->lv; - WFIFOL(fd,c*104+22)=cap_value(m->exp,0,INT_MAX); + WFIFOL(fd,c*104+22)=(int)cap_value(m->exp,0,INT_MAX); WFIFOL(fd,c*104+26)=m->online; WFIFOL(fd,c*104+30)=m->position; memset(WFIFOP(fd,c*104+34),0,50); // ƒƒ‚H |