diff options
author | sketchyphoenix <sketchyphoenix@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-06-18 10:39:20 +0000 |
---|---|---|
committer | sketchyphoenix <sketchyphoenix@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-06-18 10:39:20 +0000 |
commit | ab859094455fd375d0cb42523b13cf8367315be1 (patch) | |
tree | 684a6f660c9499bce38aff4ea3abcf468d4eb48f | |
parent | 16d5b76a69ea16dce3460dcf3fc6d196bb628163 (diff) | |
download | hercules-ab859094455fd375d0cb42523b13cf8367315be1.tar.gz hercules-ab859094455fd375d0cb42523b13cf8367315be1.tar.bz2 hercules-ab859094455fd375d0cb42523b13cf8367315be1.tar.xz hercules-ab859094455fd375d0cb42523b13cf8367315be1.zip |
Fixed cash shop not using points to make up the cash difference when purchasing an item.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12853 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/map/npc.c | 4 | ||||
-rw-r--r-- | src/map/pc.c | 19 |
3 files changed, 7 insertions, 18 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 94e03953d..112862186 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -5,6 +5,8 @@ IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. 2008/06/18 * Added a fix for refresh properly displaying dead and sitting players. [SketchyPhoenix] + * Fixed basilica behavior not knocking back monsters 2 cells should one attempt to enter the field. + * Fixed cash shop not using points to make up the cash difference when purchasing an item. 2008/06/17 * Forgot to commit source modification from r12833 (Updated Novice grounds.) [L0ne_W0lf] 2008/06/16 diff --git a/src/map/npc.c b/src/map/npc.c index 1a888cd24..52adadf29 100644 --- a/src/map/npc.c +++ b/src/map/npc.c @@ -1091,9 +1091,7 @@ int npc_cashshop_buy(struct map_session_data *sd, int nameid, int amount, int po if( points > price ) points = price; - if( sd->cashPoints < price - points ) - return 6; - if( sd->kafraPoints < points ) + if( (sd->kafraPoints < points) || (sd->cashPoints < price - points) ) return 6; pc_paycash(sd, price, points); diff --git a/src/map/pc.c b/src/map/pc.c index 643863ea6..2b2ef3a83 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -2816,21 +2816,10 @@ void pc_paycash(struct map_session_data *sd, int price, int points) int cash = price - points; nullpo_retv(sd); - if( cash > 0 ) - { - pc_setaccountreg(sd,"#CASHPOINTS",sd->cashPoints - cash); - - sprintf(output, "Used %d cash points. %d points remaining.", cash, sd->cashPoints); - clif_disp_onlyself(sd, output, strlen(output)); - } - - if( points > 0 ) - { - pc_setaccountreg(sd,"#KAFRAPOINTS",sd->kafraPoints - points); - - sprintf(output, "Used %d kafra points. %d points remaining.", points, sd->kafraPoints); - clif_disp_onlyself(sd, output, strlen(output)); - } + pc_setaccountreg(sd,"#CASHPOINTS",sd->cashPoints - cash); + pc_setaccountreg(sd,"#KAFRAPOINTS",sd->kafraPoints - points); + sprintf(output, "Used %d kafra points and %d cash points. %d kafra and %d cash points remaining.", points, cash, sd->kafraPoints, sd->cashPoints); + clif_disp_onlyself(sd, output, strlen(output)); } void pc_getcash(struct map_session_data *sd, int cash, int points) |