diff options
Diffstat (limited to 'src/map/script.c')
-rw-r--r-- | src/map/script.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/map/script.c b/src/map/script.c index 482a136cf..c9f0b8bd5 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -3067,10 +3067,8 @@ int buildin_successrefitem(struct script_state *st) if(i >= 0) { ep=sd->status.inventory[i].equip; - #ifndef TXT_ONLY if(log_config.refine > 0) log_refine(sd, i, 1); - #endif //USE_SQL sd->status.inventory[i].refine++; pc_unequipitem(sd,i,2); @@ -3097,10 +3095,8 @@ int buildin_failedrefitem(struct script_state *st) sd=script_rid2sd(st); i=pc_checkequip(sd,equip[num-1]); if(i >= 0) { - #ifndef TXT_ONLY if(log_config.refine > 0) log_refine(sd, i, 0); - #endif //USE_SQL sd->status.inventory[i].refine = 0; pc_unequipitem(sd,i,3); |