summaryrefslogtreecommitdiff
path: root/src/map/script.c
diff options
context:
space:
mode:
authorLupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2005-02-17 17:19:26 +0000
committerLupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2005-02-17 17:19:26 +0000
commit4f192318c6ce14dc231dba81426161cb7d450738 (patch)
tree432b866b6d51dadf8f48581ab162c8883a77027d /src/map/script.c
parentff8a0342bc95eb2064ed7c620a0c410a92fde310 (diff)
downloadhercules-4f192318c6ce14dc231dba81426161cb7d450738.tar.gz
hercules-4f192318c6ce14dc231dba81426161cb7d450738.tar.bz2
hercules-4f192318c6ce14dc231dba81426161cb7d450738.tar.xz
hercules-4f192318c6ce14dc231dba81426161cb7d450738.zip
added +2 drops slots into MOBS DBs
brushed up srcs for 10 drops fixed some mobs... fixed TXT logs fixed 1 guardian spawn changed 2 SQL files. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@1126 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/script.c')
-rw-r--r--src/map/script.c4
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);