diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-01-31 13:45:04 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-01-31 13:45:04 +0000 |
commit | f4d04712b8383d5540f3178320af47de5486786b (patch) | |
tree | abff309e040725f1d57efb2dc57d5b727ca4ba72 /src/map/clif.c | |
parent | c23f21ed431558710c38cd81f5359d5c39cb6a76 (diff) | |
download | hercules-f4d04712b8383d5540f3178320af47de5486786b.tar.gz hercules-f4d04712b8383d5540f3178320af47de5486786b.tar.bz2 hercules-f4d04712b8383d5540f3178320af47de5486786b.tar.xz hercules-f4d04712b8383d5540f3178320af47de5486786b.zip |
- Changed the exp tables format.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5135 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 d8195fb0a..7aafe9311 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -8814,7 +8814,7 @@ void clif_parse_LoadEndAck(int fd,struct map_session_data *sd) pc_checkskill(sd,SG_STAR_COMFORT))
status_calc_pc(sd,0);
- if (pc_checkskill(sd, SG_DEVIL) && sd->status.job_level >= battle_config.max_job_level)
+ if (pc_checkskill(sd, SG_DEVIL) && !pc_nextjobafter(sd))
clif_status_load(&sd->bl, SI_DEVIL, 1); //blindness [Komurka]
map_foreachinarea(clif_getareachar,sd->bl.m,sd->bl.x-AREA_SIZE,sd->bl.y-AREA_SIZE,sd->bl.x+AREA_SIZE,sd->bl.y+AREA_SIZE,BL_ALL,sd);
|