diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-10-19 21:25:56 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-10-19 21:25:56 +0000 |
commit | 0a98391b9dba8f27a0c285fcdafc564d93a37e23 (patch) | |
tree | 06157117643325a15f5fd570767897856184e96b /src/map/pc.c | |
parent | ebed223aec7badf0b6ca7cf6e3341a5c81e7174d (diff) | |
download | hercules-0a98391b9dba8f27a0c285fcdafc564d93a37e23.tar.gz hercules-0a98391b9dba8f27a0c285fcdafc564d93a37e23.tar.bz2 hercules-0a98391b9dba8f27a0c285fcdafc564d93a37e23.tar.xz hercules-0a98391b9dba8f27a0c285fcdafc564d93a37e23.zip |
- Cleaned up the log.c file.
- Splitted log_pick into log_pick_pc and log_pick_mob to avoid ugly type-casting.
- Fixed log_chat not recording anything if the server is compiled in SQL mode and sql_logs is turned off (it should then record to a plain txt file)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9017 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index e7d47a2c6..f83b032cf 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -2766,7 +2766,7 @@ int pc_dropitem(struct map_session_data *sd,int n,int amount) //Logs items, dropped by (P)layers [Lupus] if(log_config.enable_logs&0x8) - log_pick(sd, "P", 0, sd->status.inventory[n].nameid, -amount, (struct item*)&sd->status.inventory[n]); + log_pick_pc(sd, "P", sd->status.inventory[n].nameid, -amount, (struct item*)&sd->status.inventory[n]); //Logs if (!map_addflooritem(&sd->status.inventory[n], amount, sd->bl.m, sd->bl.x, sd->bl.y, NULL, NULL, NULL, 2)) @@ -2969,7 +2969,7 @@ int pc_useitem(struct map_session_data *sd,int n) clif_useitemack(sd,n,amount-1,1); //Logs (C)onsumable items [Lupus] if(log_config.enable_logs&0x100) - log_pick(sd, "C", 0, sd->status.inventory[n].nameid, -1, &sd->status.inventory[n]); + log_pick_pc(sd, "C", sd->status.inventory[n].nameid, -1, &sd->status.inventory[n]); //Logs pc_delitem(sd,n,1,1); } @@ -3249,8 +3249,8 @@ int pc_steal_item(struct map_session_data *sd,struct block_list *bl, int lv) { //Only invoke logs if item was successfully added (otherwise logs lie about actual item transaction) //Logs items, Stolen from mobs [Lupus] if(log_config.enable_logs&0x80) { - log_pick((struct map_session_data*)md, "M", md->class_, itemid, -1, NULL); - log_pick(sd, "P", 0, itemid, 1, NULL); + log_pick_mob(md, "M", itemid, -1, NULL); + log_pick_pc(sd, "P", itemid, 1, NULL); } //A Rare Steal Global Announce by Lupus |