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/vending.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/vending.c')
-rw-r--r-- | src/map/vending.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/vending.c b/src/map/vending.c index bb518babf..0f8ceaa30 100644 --- a/src/map/vending.c +++ b/src/map/vending.c @@ -160,8 +160,8 @@ void vending_purchasereq(struct map_session_data *sd,int len,int id,unsigned cha //Logs sold (V)ending items [Lupus]
if(log_config.enable_logs&0x4) {
- log_pick(vsd, "V", 0, vsd->status.cart[idx].nameid, -amount, (struct item*)&vsd->status.cart[idx]);
- log_pick( sd, "V", 0, vsd->status.cart[idx].nameid, amount, (struct item*)&vsd->status.cart[idx]);
+ log_pick_pc(vsd, "V", vsd->status.cart[idx].nameid, -amount, (struct item*)&vsd->status.cart[idx]);
+ log_pick_pc( sd, "V", vsd->status.cart[idx].nameid, amount, (struct item*)&vsd->status.cart[idx]);
}
//Logs
|