diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/map/pc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index 7d93442cb..10eb3b27d 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -1514,7 +1514,8 @@ int pc_calc_skilltree_normalize_job(struct map_session_data *sd) c |= JOBL_UPPER; else if (sd->class_&JOBL_BABY) //Convert to Baby c |= JOBL_BABY; - + if( sd->class_&JOBL_THIRD && skill_point < 107 )//bugreport:5329, require to spend all 2.x points in your 2.x + c &= MAPID_UPPERMASK; return c; } |