diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-01-23 11:53:52 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-01-23 11:53:52 +0000 |
commit | 88c8f196133a694bac6023244774063332987f7b (patch) | |
tree | 5855d698d70e415aa8a34fe582d0ce40b3d830f4 /src/map/clif.c | |
parent | e4b08558c99c63f3147941df3f3864e31dafb576 (diff) | |
download | hercules-88c8f196133a694bac6023244774063332987f7b.tar.gz hercules-88c8f196133a694bac6023244774063332987f7b.tar.bz2 hercules-88c8f196133a694bac6023244774063332987f7b.tar.xz hercules-88c8f196133a694bac6023244774063332987f7b.zip |
Added a missing break; in pc_setstat, messing up LUK increasing (see r13460) (bugreport:2697).
Corrected clif_bladestop(), void function returning a value (see r13471) (bugreport:2698).
Fixed npcs with touch area not stopping walk timers (see r6516) (bugreport:2700).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13480 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 662cfb580..2759f29ea 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -5961,7 +5961,7 @@ void clif_bladestop(struct block_list *src, int dst_id, int active) { unsigned char buf[32]; - nullpo_retr(0, src); + nullpo_retv(src); WBUFW(buf,0)=0x1d1; WBUFL(buf,2)=src->id; |