diff options
Diffstat (limited to 'src/map/charcommand.c')
-rw-r--r-- | src/map/charcommand.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/map/charcommand.c b/src/map/charcommand.c index 8772c18dc..fdb91bea9 100644 --- a/src/map/charcommand.c +++ b/src/map/charcommand.c @@ -1320,7 +1320,9 @@ int charcommand_baselevel( level = pl_sd->status.base_level -1;
if (pl_sd->status.status_point > 0) {
for (i = 0; i > -level; i--)
- status_point -= (pl_sd->status.base_level +i + 14) / 5;
+ status_point += (pl_sd->status.base_level +i + 14) / 5;
+ if (pl_sd->status.status_point < status_point)
+ pc_resetstate(sd);
if (pl_sd->status.status_point < status_point)
pl_sd->status.status_point = 0;
else
|