From c652d46923e5b95a54ab16cf6ccc8eb74e5f4c08 Mon Sep 17 00:00:00 2001 From: salepate Date: Sat, 25 Aug 2012 01:03:59 +0000 Subject: - reverted to r16668, erroneous fix git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16702 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/pc.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/map/pc.c b/src/map/pc.c index 20e71988c..8ccccb46c 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -5824,7 +5824,7 @@ int pc_statusup(struct map_session_data* sd, int type) /// @param val The stat increase amount. int pc_statusup2(struct map_session_data* sd, int type, int val) { - int max; + int max, need; nullpo_ret(sd); if( type < SP_STR || type > SP_LUK ) @@ -5833,6 +5833,8 @@ int pc_statusup2(struct map_session_data* sd, int type, int val) return 1; } + need = pc_need_status_point(sd,type,1); + // set new value max = pc_maxparameter(sd); val = pc_setstat(sd, type, cap_value(pc_getstat(sd,type) + val, 1, max)); @@ -5840,7 +5842,7 @@ int pc_statusup2(struct map_session_data* sd, int type, int val) status_calc_pc(sd,0); // update increase cost indicator - if( pc_need_status_point(sd, type, val) != pc_need_status_point(sd,type,1) ) + if( need != pc_need_status_point(sd,type,1) ) clif_updatestatus(sd, SP_USTR + type-SP_STR); // update stat value -- cgit v1.2.3-70-g09d2