From fac79cd757f3441741f4ad70d9ce511781f8be3f Mon Sep 17 00:00:00 2001 From: skotlex Date: Wed, 15 Mar 2006 13:35:59 +0000 Subject: - Fixed twilight pharmacy dropping 1 item to the ground instead of the qty produced. Thanks to k3dt - Fixed Plagiarism not working unless you had some sc active. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5607 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/skill.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/map/skill.c b/src/map/skill.c index f1fff626d..d6804a070 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -1906,7 +1906,8 @@ int skill_attack( int attack_type, struct block_list* src, struct block_list *ds map_freeblock_lock(); if(damage > 0 && dmg.flag&BF_SKILL && tsd - && pc_checkskill(tsd,RG_PLAGIARISM) && sc && sc->data[SC_PRESERVE].timer == -1 + && pc_checkskill(tsd,RG_PLAGIARISM) + && (!sc || sc->data[SC_PRESERVE].timer == -1) && damage < tsd->status.hp) { //Updated to not be able to copy skills if the blow will kill you. [Skotlex] if ((!tsd->status.skill[skillid].id || tsd->status.skill[skillid].flag >= 13) && @@ -10831,7 +10832,7 @@ int skill_produce_mix( struct map_session_data *sd, int skill_id, if (tmp_item.amount) { //Success if((flag = pc_additem(sd,&tmp_item,tmp_item.amount))) { clif_additem(sd,0,0,flag); - map_addflooritem(&tmp_item,1,sd->bl.m,sd->bl.x,sd->bl.y,NULL,NULL,NULL,0); + map_addflooritem(&tmp_item,tmp_item.amount,sd->bl.m,sd->bl.x,sd->bl.y,NULL,NULL,NULL,0); } return 1; } -- cgit v1.2.3-70-g09d2