diff options
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 3 |
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; } |