summaryrefslogtreecommitdiff
path: root/src/map/pc.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-02-05 18:16:33 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-02-05 18:16:33 +0000
commitb6a4e310b0582097f61faf175a59a1056262f911 (patch)
tree736ad5437e284d0f92b97b9a80fba08c0d43cd98 /src/map/pc.c
parent75530b149dc1272d17c2c22faefe2e6c3e762c5b (diff)
downloadhercules-b6a4e310b0582097f61faf175a59a1056262f911.tar.gz
hercules-b6a4e310b0582097f61faf175a59a1056262f911.tar.bz2
hercules-b6a4e310b0582097f61faf175a59a1056262f911.tar.xz
hercules-b6a4e310b0582097f61faf175a59a1056262f911.zip
- Fixed a duplicate warp name in Rachel
- Fixed Venom Splasher not being Poison elemental - Cleaned up #blv - Fixed the skill tree not always updating when using @allskill - Probably fixed the target-change on melee attack setting not working. - Moved the deletion of the invincible timer when using skills so that it is not deleted for skills such as Ashura (when just selecting a target) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9791 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r--src/map/pc.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/map/pc.c b/src/map/pc.c
index 3731dda29..b268ed629 100644
--- a/src/map/pc.c
+++ b/src/map/pc.c
@@ -4558,6 +4558,9 @@ int pc_allskillup(struct map_session_data *sd)
}
}
status_calc_pc(sd,0);
+ //Required because if you could level up all skills previously,
+ //the update will not be sent as only the lv variable changes.
+ clif_skillinfoblock(sd);
return 0;
}