summaryrefslogtreecommitdiff
path: root/src/map/script.c
diff options
context:
space:
mode:
authorzephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-11-17 15:43:13 +0000
committerzephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-11-17 15:43:13 +0000
commit3dad62b22c6662d2ab290022c261375e71a9ee6e (patch)
tree3443869df7b6b0ae600e3493ac3de6fe84bfe4f2 /src/map/script.c
parent2af3aa8ca2595b507a9ab2483fd34cfdfd39ccb1 (diff)
downloadhercules-3dad62b22c6662d2ab290022c261375e71a9ee6e.tar.gz
hercules-3dad62b22c6662d2ab290022c261375e71a9ee6e.tar.bz2
hercules-3dad62b22c6662d2ab290022c261375e71a9ee6e.tar.xz
hercules-3dad62b22c6662d2ab290022c261375e71a9ee6e.zip
- Some "expire_time" = 0 considerations. Please update. (Bugreport 2451)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13373 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/script.c')
-rw-r--r--src/map/script.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/map/script.c b/src/map/script.c
index f56d388c3..4091a4081 100644
--- a/src/map/script.c
+++ b/src/map/script.c
@@ -9455,7 +9455,7 @@ BUILDIN_FUNC(successremovecards)
cardflag = 1;
item_tmp.id=0,item_tmp.nameid=sd->status.inventory[i].card[c];
item_tmp.equip=0,item_tmp.identify=1,item_tmp.refine=0;
- item_tmp.attribute=0;
+ item_tmp.attribute=0,item_tmp.expire_time=0;
for (j = 0; j < MAX_SLOTS; j++)
item_tmp.card[j]=0;
@@ -9476,7 +9476,7 @@ BUILDIN_FUNC(successremovecards)
struct item item_tmp;
item_tmp.id=0,item_tmp.nameid=sd->status.inventory[i].nameid;
item_tmp.equip=0,item_tmp.identify=1,item_tmp.refine=sd->status.inventory[i].refine;
- item_tmp.attribute=sd->status.inventory[i].attribute;
+ item_tmp.attribute=sd->status.inventory[i].attribute,item_tmp.expire_time=0;
for (j = 0; j < MAX_SLOTS; j++)
item_tmp.card[j]=0;
@@ -9535,7 +9535,7 @@ BUILDIN_FUNC(failedremovecards)
struct item item_tmp;
item_tmp.id=0,item_tmp.nameid=sd->status.inventory[i].card[c];
item_tmp.equip=0,item_tmp.identify=1,item_tmp.refine=0;
- item_tmp.attribute=0;
+ item_tmp.attribute=0,item_tmp.expire_time=0;
for (j = 0; j < MAX_SLOTS; j++)
item_tmp.card[j]=0;
@@ -9565,7 +9565,7 @@ BUILDIN_FUNC(failedremovecards)
struct item item_tmp;
item_tmp.id=0,item_tmp.nameid=sd->status.inventory[i].nameid;
item_tmp.equip=0,item_tmp.identify=1,item_tmp.refine=sd->status.inventory[i].refine;
- item_tmp.attribute=sd->status.inventory[i].attribute;
+ item_tmp.attribute=sd->status.inventory[i].attribute,item_tmp.expire_time=0;
//Logs items, got from (N)PC scripts [Lupus]
if(log_config.enable_logs&0x40)